Jump to content

Loops/Infinite: Difference between revisions

Added Hare
(Rapira Infinite Loop)
(Added Hare)
Line 1,050:
echo "SPAM";
}</lang>
 
=={{header|Hare}}==
<lang haskell>use fmt;
 
export fn main() void = {
for (true) {
fmt::println("SPAM")!;
};
};</lang>
 
=={{header|Haskell}}==
Cookies help us deliver our services. By using our services, you agree to our use of cookies.