implement bb; include "buf.m"; buf : Buf; Data : import buf; include "sys.m"; sys : Sys; include "draw.m"; bb: module { init: fn(nil: ref Draw->Context, argv: list of string); }; init(nil: ref Draw->Context, nil: list of string) { sys = load Sys Sys->PATH; buf = load Buf Buf->PATH; d := buf->new("abcdefghijklmnopq"); sys->print("%s", d.gets('e')); } # Put Limbo bb