Answers for "try and accepts in julia"

0

try and accepts 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
Posted by: Guest on February-08-2022

Browse Popular Code Answers by Language