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