13 lines
166 B
Text
13 lines
166 B
Text
|
|
node f(x : int) returns (y : int)
|
|
let
|
|
y = 0 fby x;
|
|
tel
|
|
|
|
node main() returns (y : int)
|
|
var
|
|
x : int;
|
|
let
|
|
x = 1 + (0 fby x);
|
|
y = async f(x) on timer_ms(5);
|
|
tel
|