We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c40d85 commit 07e09d9Copy full SHA for 07e09d9
test/markup/rascript/comments.expect.txt
@@ -0,0 +1,9 @@
1
+<span class="hljs-comment">/**
2
+ * This is a test comment
3
+ * It crosses multiple lines
4
+ * RAScript supports multiple types of comments
5
+ **/</span>
6
+
7
+<span class="hljs-comment">// This is the second form, a single line comment</span>
8
9
+<span class="hljs-variable">non_comment</span> = <span class="hljs-string">"this is not part of the comment"</span>
test/markup/rascript/comments.txt
+/**
+ **/
+// This is the second form, a single line comment
+non_comment = "this is not part of the comment"
0 commit comments