let f = fun x y -> x <<< y let g = fun x y -> x <<< y [<EntryPoint>] let main _ = printfn "%d" <| f 1 10 printfn "%d" <| f 1L 10 printfn "%d" <| g 1L 10 0
Standard input is empty
/home/XugD2Q/prog.fs(7,21): error FS0001: This expression was expected to have type int but here has type int64
Standard output is empty