view python/tests/testcode.c @ 176:5fd02aa38b42

Added while loop code generation
author Windel Bouwman
date Sat, 20 Apr 2013 12:00:51 +0200
parents f2d980eef509
children
line wrap: on
line source


int Calculate(int a, int b, int c)
{
   int d, e;
   d = a + b;
   e = d * c - a;
   return a + b + c + d + e;
}