mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-05-16 13:43:10 -04:00
8 lines
94 B
Vala
8 lines
94 B
Vala
int square (int num) {
|
|
return num * num;
|
|
}
|
|
|
|
static int main () {
|
|
return square (3);
|
|
}
|