fork(3) download
  1. type test = T of int * float * string
  2.  
  3. let x = 1, 1.0, "hello"
  4.  
  5. let y = T x
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
File "prog.ml", line 5, characters 8-11:
The constructor T expects 3 argument(s), but is here applied to 1 argument(s)
stdout
Standard output is empty