fork(1) download
  1. let f = fun x y -> x <<< y
  2. let g = fun x y -> x <<< y
  3.  
  4. [<EntryPoint>]
  5. let main _ =
  6. printfn "%d" <| f 1 10
  7. printfn "%d" <| f 1L 10
  8. printfn "%d" <| g 1L 10
  9. 0
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/home/XugD2Q/prog.fs(7,21): error FS0001: This expression was expected to have type
    int    
but here has type
    int64    
stdout
Standard output is empty