9 lines
151 B
OCaml
9 lines
151 B
OCaml
|
|
let div a b = a / b
|
||
|
|
|
||
|
|
let () =
|
||
|
|
try let _ = div 3 0 in ()
|
||
|
|
with e ->
|
||
|
|
prerr_endline(Printexc.to_string e);
|
||
|
|
Printexc.print_backtrace stderr;
|
||
|
|
;;
|