Modified test t13.ept

Modified test t13.ept so that the output is not always "0"
(useful for further comparisons)
This commit is contained in:
Gwenaël Delaval 2012-07-16 01:00:09 +02:00
parent a15e17c02d
commit 90e391f4df

View file

@ -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