hell/examples/example.hell
2025-03-10 15:20:09 -04:00

14 lines
140 B
Plaintext

//
// example.hell
//
import hell:std.ioutils
func
main(int argc, str argv[])
{
while (1) {
hell:std.ioutils.writeln("Hello\n");
}
}