Skip to content

Commit 45fcfcc

Browse files
Update ScriptSpecification.md
1 parent e646fd5 commit 45fcfcc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ScriptSpecification.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ Jumps in the script are string literals suffixed by a colon `:` above an instruc
2727

2828
## Comments
2929

30-
The script can contain single-line comments prefixed with `//`. Those comments will be ignored on compilation.<br>```// This is a comment```
30+
The script can contain single-line comments prefixed with `//` and multi-line comments encased in `/* Comment */`. Those comments will be ignored on compilation.<br>
31+
```
32+
// This is a comment
33+
/* This is also
34+
a comment */
35+
```
3136

3237
## Value notation
3338

0 commit comments

Comments
 (0)