Skip to content

Commit

Permalink
support one line comment for LISP
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Apr 8, 2016
1 parent af04843 commit 60b1237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func main() {
device_tree := NewLanguage("Device Tree", "//", "/*", "*/")
erlang := NewLanguage("Erlang", "%", "", "")
expect := NewLanguage("Expect", "#", "", "")
lisp := NewLanguage("LISP", "", "#|", "|#")
lisp := NewLanguage("LISP", ";;", "#|", "|#")
fortran_legacy := NewLanguage("FORTRAN Legacy", "c,C,!,*", "", "")
fortran_modern := NewLanguage("FORTRAN Modern", "!", "", "")
golang := NewLanguage("Go", "//", "/*", "*/")
Expand Down

0 comments on commit 60b1237

Please sign in to comment.