你如何在 PureScript 中发表评论?
How do you make comments in PureScript?
我想知道如何在 PureScript 代码中添加注释。
在 Python 中,等价于:
# Here is a comment
或JavaScript
// Another comment
PureScript 中的等价物是什么?
我相信你可以做到:
-- some somment
根据PureScript Language Reference,有单行注释
-- comment
和多行注释
{- comment
comment line 2
-}
像 -- |
这样的特殊评论被文档工具拾取。
我想知道如何在 PureScript 代码中添加注释。
在 Python 中,等价于:
# Here is a comment
或JavaScript
// Another comment
PureScript 中的等价物是什么?
我相信你可以做到:
-- some somment
根据PureScript Language Reference,有单行注释
-- comment
和多行注释
{- comment
comment line 2
-}
像 -- |
这样的特殊评论被文档工具拾取。