F# 最简单地处理命令行参数的形式 [<EntryPoint>] let Main args = printfn "Hello %A" args 0 ====== 第一行有关入口的属性不能少; 最后一行的 0 也不能少; 中间就是对参数的处理了。