CC/tester/testsuite/good/core006.jl
Jeena Paradies 063194f8be first commit
2011-04-19 11:37:05 +02:00

11 lines
No EOL
165 B
Julia

// 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 ;
}