Modified test t13.ept

Modified test t13.ept so that the output is not always "0"
(useful for further comparisons)
master
Gwenaël Delaval 12 years ago
parent a15e17c02d
commit 90e391f4df

@ -6,7 +6,7 @@ tel
node fourth() returns (res : bool)
var tmp : int;
let
tmp = 0 fby (if res then 0 else tmp + 1);
tmp = 0 fby (if res then tmp + 1 else 0);
res = tmp = 0;
tel

Loading…
Cancel
Save