foo(a,b,c,d)1 foo (a, b, c, d)
2 {
3   if (a < 0)
4     {
5       b = c;
6     }
7   else
8     {
9       b = d;
10     }
11   return b + 75;
12 }
13