blob: ab8cfbe4d3a621b7f321be537dd648bd13a9afcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
implement Pause;
#
# init program to do nothing but pause
#
include "sys.m";
include "draw.m";
Pause: module
{
init: fn(nil: ref Draw->Context, nil: list of string);
};
init(nil: ref Draw->Context, nil: list of string)
{
<-chan of int;
}
|