about summary refs log tree commit diff stats
path: root/js/scripting-lang/baba-yaga-c/test_countdown.txt
blob: e474c770a676a97c58e81ee542356c63cd77d9b8 (plain) (blame)
1
2
countdown : n -> when n is 0 then 0 _ then countdown (n - 1);
countdown : n -> when n is 0 then 0 _ then countdown (n - 1); result : countdown 3;