我試圖用f#玩弄基礎知識,但卡住了。如果您有一般技巧,將不勝感激。關於元組和F中用戶輸入的問題#
#light
open System
[<EntryPoint>]
let main (args : string[]) =
match args with
| [| firstName; lastName; city |] ->
printfn "Hi there %s %s from %s" firstName lastName city
0
| _ -> failwith "Usage: HiThere.exe firstName lastName City";;
我得到這個錯誤,
val main : args:string [] -> int
我是看在F#教程,並試圖學習這個功能,但我不明白爲什麼我不能沒有這些錯誤做到這一點。
你想知道爲什麼或如何解決它,請問你需要的是一個問題的答案。 – davejal
哪個教程?這將有助於我們理解你未來的問題。 –
let sumOfSquaresI nums = let mutable acc = 0 for x in nums do acc <- acc + sqr x acc
這是我從這個[視頻](https://youtu.be/HQ887aOZITY?t=14m51s)得到的原始問題,我不完全明白這是如何工作的,沒有遞歸。 – Jsc