Cyrillic symbols in comments

It appares that the quotation marks you use are the problem, not the comments:

julia> println(“Hello !”) # Булгъар
ERROR: syntax: invalid character "“" near column 9
Stacktrace:
 [1] top-level scope at none:1

julia> println("Hello !") # Булгъар
Hello !

Use ASCII quotation marks.

3 Likes