mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-14 18:06:15 +01:00
16 lines
208 B
Text
16 lines
208 B
Text
|
function next
|
||
|
input Integer x;
|
||
|
output Integer y;
|
||
|
algorithm
|
||
|
y := 1 + x;
|
||
|
end next;
|
||
|
|
||
|
class System
|
||
|
Integer x;
|
||
|
initial equation
|
||
|
x = 0;
|
||
|
equation
|
||
|
when sample(0, 1) then
|
||
|
x = next(pre(x));
|
||
|
end when;
|
||
|
end System;
|