first commit

This commit is contained in:
Jeena Paradies 2011-04-19 11:37:05 +02:00
commit 063194f8be
349 changed files with 36508 additions and 0 deletions

View file

@ -0,0 +1,11 @@
// Declaration of multiple variables of the same type in one statement:
int main () {
int x, y;
x = 45;
y = -36;
printInt(x);
printInt(y);
return 0 ;
}