RosettaCodeData/Task/Send-an-unknown-method-call/Julia/send-an-unknown-method-call.julia
2018-06-22 20:57:24 +00:00

6 lines
146 B
Text

const functions = Dict{String,Function}(
"foo" => x -> 42 + x,
"bar" => x -> 42 * x)
@show functions["foo"](3)
@show functions["bar"](3)