Is there a way to comment M code / comment out lines or blocks of code?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
M supports two different types of comments:
- Single line comments can be started with //
- You can comment out multiple lines or comment out text in the middle of a line using /* */ (e.g.
= 1 + /* some comment */ 2
)
Comments might seem to disappear in the formula bar if they are at the end of the line, but they are still there. You can verify this by looking at your code in the Advanced Editor.