如何在 Julia 中进行多行注释?
How to do a multiline comment in Julia?
我的 Google 搜索最初只将我引导到 github (https://github.com/JuliaLang/julia/issues/69) 上的大量讨论线程。虽然肯定有见地和有趣,但我认为许多人可以方便地在 Whosebug 上立即回答这个问题。
可以写多行注释,注释前加#=
,注释后加=#
。像这样
#=
enter comment here
=#
请注意,这些也是可嵌套的。
我的 Google 搜索最初只将我引导到 github (https://github.com/JuliaLang/julia/issues/69) 上的大量讨论线程。虽然肯定有见地和有趣,但我认为许多人可以方便地在 Whosebug 上立即回答这个问题。
可以写多行注释,注释前加#=
,注释后加=#
。像这样
#=
enter comment here
=#
请注意,这些也是可嵌套的。