8 lines
87 B
Standard ML
8 lines
87 B
Standard ML
let
|
|
fun inf_loop () = (
|
|
print "SPAM\n";
|
|
inf_loop ()
|
|
)
|
|
in
|
|
inf_loop ()
|
|
end
|