Closed ViralBShah closed 10 years ago
Good catch!
Very minor point (which actually also happens in julia's own REPL): semicolons are now effective at suppressing output also within comments in certain cases, e.g. if placed at the end:
julia> 123 #
123
julia> 123 #;
julia> 123 #;1
123
julia> 123 #; #
julia> 123 #; #123
julia>
I suppose everything in comments should just be ignored.
The ';' is ignored currently, instead of suppressing output: