Hi Guys,
As I am new to Julia I got myself in to some multiline bug, something like this. I wonder if the vscode extension could provide some warning for this?
I thought it will return 6, but 3 is returned.
function aaa()
ret = 1 + 2
+ 3
return ret
end