inferno/code-snippets/hello_world_var.b

10 lines
170 B
Brainfuck
Raw Normal View History

2020-05-21 13:59:16 +00:00
# hello_world_var.b
# ...
2020-05-21 13:59:16 +00:00
init(ctxt: ref Draw->Context, args: list of string) {
text: con "Hello, World!\n";
sys = load Sys Sys->PATH;
sys->print(text);
}