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