val double-me = fn (x: Int) -> Int : (x * x)
println(double-me(4))
how can i achieve the same by using the shorthand for this kind of function? this doesn't work because the function is expecting 2 arguments but i really want to refer the same arg twice: