Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
aee3a91093f18a36aca5744cae75db0b3113adc8
/
.
/
examples
/
java
/
default.java
blob: ab3b236ef1ce41632091e43090d5121916fcd427 [
file
] [
log
] [
blame
] [
raw
]
// Type your code here, or load an example.
class
Square
{
static
int
square
(
int
num
)
{
return
num
*
num
;
}
}