11 lines
No EOL
185 B
Julia
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 ;
|
|
|
|
} |