Scott Jones Sun, 06 Mar 2016 12:45:37 -0800
d = Dict(:a=>1,:b=>2) r = get(d, :c) do ; 3 ; end gets an error: *ERROR: syntax: unexpected ;*
* in eval(::Module, ::Any) at ./boot.jl:267* but: r = get(d, :c) do 3 end works.