Files
compiler-explorer/test/java/square/input.java
Christian Vonrüti 940e0731d3 Tests for java support
2019-06-08 02:53:55 +02:00

6 lines
125 B
Java

// Type your code here, or load an example.
class Square {
static int square(int num) {
return num * num;
}
}