mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 14:04:04 -05:00
6 lines
125 B
Java
6 lines
125 B
Java
// Type your code here, or load an example.
|
|
class Square {
|
|
static int square(int num) {
|
|
return num * num;
|
|
}
|
|
} |