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

11 lines
No EOL
185 B
Julia

// multiple variables of the same type declared
// and possibly initialized in the same statement
int main() {
int x, y = 7;
x = -1234234;
printInt(x);
printInt(y);
return 0 ;
}