Merge remote-tracking branch 'refs/remotes/origin/main'

nothing really changed
This commit is contained in:
Marco Realacci 2022-11-14 17:54:07 +01:00
commit 0c3a30b201

View file

@ -0,0 +1,16 @@
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;