June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
|
|
@ -0,0 +1,20 @@
|
|||
implement Command;
|
||||
|
||||
include "sys.m";
|
||||
sys: Sys;
|
||||
|
||||
include "draw.m";
|
||||
|
||||
include "sh.m";
|
||||
|
||||
init(nil: ref Draw->Context, nil: list of string)
|
||||
{
|
||||
sys = load Sys Sys->PATH;
|
||||
|
||||
l := list of {1, 2, 3, 4, 5};
|
||||
|
||||
# the unary 'tl' operator gets the tail of a list
|
||||
for (; l != nil; l = tl l)
|
||||
sys->print("%d\n", hd l);
|
||||
# the unary 'hd' operator gets the head of a list
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue