shithub: limbobyexample

ref: c818e95dc18d91228358fc9750d29dcd8cc9b488
dir: /Constants/const.b/

View raw version
implement Const;

include "sys.m";
include "draw.m";

sys: Sys;
print: import sys;

Const: module {
	init: fn(nil: ref Draw->Context, nil: list of string);
};

n: con 7;
Red, Green, Blue: con iota;

init(nil: ref Draw->Context, nil: list of string) {
	sys = load Sys Sys->PATH;

	s: con "Limbo";

	print(string n + "\n");
	print("Red: %d Green: %d Blue: %d\n", Red, Green, Blue);
	print(s + "\n");

	exit;
}