open System [] let main (args : string[]) = if args. Length <> 3 then failwith "Usage: HiThere.exe firstName lastName city" let firstName, lastName, city = args.[0], args.[1], args.[2] printfn "Hi There %s %s from %s" firstName lastName city 0