File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 472
472
"line_comment" : [" ;" ],
473
473
"extensions" : [" edn" ]
474
474
},
475
+ "Eighth" : {
476
+ "name" : " 8th" ,
477
+ "line_comment" : [" \\\\ " , " -- " ],
478
+ "multi_line_comments" : [[" (*" , " *)" ]],
479
+ "nested" : true ,
480
+ "quotes" : [[" \\\" " , " \\\" " ]],
481
+ "extensions" : [" 8th" ]
482
+ },
475
483
"Elisp" : {
476
484
"name" : " Emacs Lisp" ,
477
485
"line_comment" : [" ;" ],
Original file line number Diff line number Diff line change
1
+ \ 22 lines 9 code 8 comments 5 blanks
2
+
3
+ (* multiline comments
4
+ (* a nested
5
+ comment *)
6
+ *
7
+ *)
8
+
9
+ -- here's a single line comment
10
+ "Hello, " var, foo -- line ending comment
11
+
12
+ \ here's another single line comment
13
+ "!" var, bar \ a different line ending comment
14
+
15
+ : hello \ s --
16
+ foo @ s:<+
17
+ bar @ s:+
18
+ . cr
19
+ ;
20
+
21
+ "World" hello
22
+ bye
You can’t perform that action at this time.
0 commit comments