7 lines
82 B
Text
7 lines
82 B
Text
use fmt;
|
|
|
|
export fn main() void = {
|
|
for (true) {
|
|
fmt::println("SPAM")!;
|
|
};
|
|
};
|