cstr/tp2-obj1-meens/rcounter.ept
2025-04-03 12:08:22 +02:00

5 lines
93 B
Plaintext

node rcounter(rst:bool) returns (cnt:int)
let
cnt = if rst then 0 else (0 fby (cnt+1))
tel