source: CIVL/mods/dev.civl.abc/examples/side-effects/out_recurse.c

main
Last change on this file was aad342c, checked in by Stephen Siegel <siegel@…>, 3 years ago

Performing huge refactor to incorporate ABC, GMC, and SARL into CIVL repo and use Java modules.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5664 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 171 bytes
Line 
1int f(int n)
2{
3 int $sef$0 = f(n - 3);
4 int $sef$1 = f($sef$0);
5 int $sef$2 = f($sef$1);
6
7 return $sef$2;
8}
9int main()
10{
11 int $sef$3 = f(10);
12
13 return $sef$3;
14}
Note: See TracBrowser for help on using the repository browser.