view python/tests/testcode.c @ 108:8267ba1dbce3

Added testcode
author Windel Bouwman
date Tue, 01 Jan 2013 17:17:44 +0100
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;
}