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