14 lines
140 B
Plaintext
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");
|
|
}
|
|
}
|