9 lines
95 B
Text
9 lines
95 B
Text
|
|
defmodule Loops do
|
||
|
|
def infinite do
|
||
|
|
IO.puts "SPAM"
|
||
|
|
infinite
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
Loops.infinite
|