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