comparison python/tests/testcode.c @ 106:f2d980eef509

improved code generation
author Windel Bouwman
date Mon, 31 Dec 2012 18:26:56 +0100
parents
children
comparison
equal deleted inserted replaced
105:6a303f835c6d 106:f2d980eef509
1
2 int Calculate(int a, int b, int c)
3 {
4 int d, e;
5 d = a + b;
6 e = d * c - a;
7 return a + b + c + d + e;
8 }
9