5 lines
114 B
Text
5 lines
114 B
Text
function foo(x)
|
|
str = x("world")
|
|
println("hello $(str)!")
|
|
end
|
|
foo(y -> "blue $y") # prints "hello blue world"
|