5 lines
90 B
FSharp
5 lines
90 B
FSharp
#light
|
|
[<EntryPoint>]
|
|
let main args =
|
|
Array.iter (fun x -> printfn "%s" x) args
|
|
0
|