I thought the following code will return the value 1,
a = try 
    error()
finally
    1
end
However, `a` is undefined, as oppose to the `b` in the following code 
b = try 
    error()
end
defined as `nothing`.

Reply via email to