mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 16:24:03 -05:00
11 lines
175 B
Java
11 lines
175 B
Java
class ZFirstClass {
|
|
static int square(int num) {
|
|
return num * num;
|
|
}
|
|
}
|
|
|
|
class ASecondClass {
|
|
static int square(int num) {
|
|
return num * num;
|
|
}
|
|
} |