有没有办法在 Scilab 中进行多行注释?
Is there a way of making multiline comments in Scilab?
我是 Scilab 的新手,我正在尝试进行多行评论。访问文档,他们只对评论说:
来源:https://help.scilab.org/doc/5.3.3/en_US/comments.html
显然,无法进行多行注释。然而,很难相信,至少对我来说,语言的作者没有考虑过这个特性。有人知道吗?
Scilab 6.0.0 好像引入了多行注释。
Another way to comment a block of code is to use /* at the beginning and */ at the end.
您可以通过突出显示(一行或)多行然后按 Ctrl+D
或从菜单中轻松注释整个代码块:格式 > 注释选择。这将把 //
放在每一行的开头自动放置。
要取消注释,突出显示它,然后 Ctrl+Shift+D
,或格式 > 取消注释选择菜单。
我是 Scilab 的新手,我正在尝试进行多行评论。访问文档,他们只对评论说:
来源:https://help.scilab.org/doc/5.3.3/en_US/comments.html
显然,无法进行多行注释。然而,很难相信,至少对我来说,语言的作者没有考虑过这个特性。有人知道吗?
Scilab 6.0.0 好像引入了多行注释。
Another way to comment a block of code is to use /* at the beginning and */ at the end.
您可以通过突出显示(一行或)多行然后按 Ctrl+D
或从菜单中轻松注释整个代码块:格式 > 注释选择。这将把 //
放在每一行的开头自动放置。
要取消注释,突出显示它,然后 Ctrl+Shift+D
,或格式 > 取消注释选择菜单。