diff options
Diffstat (limited to 'Constants/const.b')
| -rw-r--r-- | Constants/const.b | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Constants/const.b b/Constants/const.b new file mode 100644 index 0000000..2868ec7 --- /dev/null +++ b/Constants/const.b @@ -0,0 +1,26 @@ +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; +} |
