6 lines
72 B
OCaml
6 lines
72 B
OCaml
|
|
let rec inf_loop() =
|
||
|
|
print_endline "SPAM";
|
||
|
|
inf_loop()
|
||
|
|
in
|
||
|
|
inf_loop()
|