blob: b4ca4439f6a473795e5ef4cb7a08d542bd90f38b [file] [log] [blame] [raw]
// Type your code here, or load an example.
object Square {
def square(num: Int): Int =
num * num
}