Versuchen Sie und akzeptieren in Julia
you may be coming from a lang like python.
instead of try except it's try catch
ex.
try:
pass
except:
pass
in julia its
try
catch
end
Unusual Unicorn