Julia has a special string comment format that is used to automatically generate documentation for functions:
"""This is a special documentation comment string that appears immediately before a function
more lines of documentation comment
even more lines of comment
"""
function juliafunc()
return nothing
end
"""
vscode-counter incorrectly counts these documentation strings as code lines.
language files code comment blank total
Julia 1 7 0 0 5
I have never used julia at all.
However, I found out that multiline comments seem to be #= ... =#.
""" is a string.
In VSCode Counter, strings are included in the code.
Julia has a special string comment format that is used to automatically generate documentation for functions: