]> matita.cs.unibo.it Git - pkg-cerco/acc-trusted.git/blob - tests/test4.c
Control and copyright added.
[pkg-cerco/acc-trusted.git] / tests / test4.c
1 char decr(char x) {
2         if (x == 0) { return 0; }
3         else {return decr(x-1); }
4
5
6 int main() {
7         return decr(4);
8 }