aboutsummaryrefslogtreecommitdiff
path: root/examples/scala/default.scala
blob: b4ca4439f6a473795e5ef4cb7a08d542bd90f38b (plain)
1
2
3
4
5
// Type your code here, or load an example.
object Square {
    def square(num: Int): Int =
        num * num
}