5 lines
57 B
OCaml
5 lines
57 B
OCaml
let div a b = a / b
|
|
|
|
let () =
|
|
let _ = div 3 0 in ()
|
|
;;
|