Limbo-Programming/for_loop.b

16 lines
294 B
Brainfuck

implement ForLoop;
include "sys.m";
include "draw.m";
sys: Sys;
ForLoop: module {
init: fn (ctxt: ref Draw->Context, args: list of string);
};
init (ctxt: ref Draw->Context, args: list of string) {
sys = load Sys Sys->PATH;
for (i := 0; i < 10; i++)
sys->print("%d", i);
}