Skip to content

Commit

Permalink
Merge pull request #75 from hhatto/add-new-langs
Browse files Browse the repository at this point in the history
feat: new lang
  • Loading branch information
hhatto committed Sep 14, 2023
2 parents f958486 + 0988ed7 commit 2cf4d60
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions language.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ var Exts = map[string]string{
"pgc": "C",
"capnp": "Cap'n Proto",
"chpl": "Chapel",
"circom": "Circom",
"cs": "C#",
"clj": "Clojure",
"coffee": "CoffeeScript",
Expand Down Expand Up @@ -520,6 +521,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"Carp": NewLanguage("Carp", []string{";"}, [][]string{{"", ""}}),
"C#": NewLanguage("C#", []string{"//"}, [][]string{{"/*", "*/"}}),
"Chapel": NewLanguage("Chapel", []string{"//"}, [][]string{{"/*", "*/"}}),
"Circom": NewLanguage("Circom", []string{"//"}, [][]string{{"/*", "*/"}}),
"Clojure": NewLanguage("Clojure", []string{"#", "#_"}, [][]string{{"", ""}}),
"COBOL": NewLanguage("COBOL", []string{"*", "/"}, [][]string{{"", ""}}),
"CoffeeScript": NewLanguage("CoffeeScript", []string{"#"}, [][]string{{"###", "###"}}),
Expand Down

0 comments on commit 2cf4d60

Please sign in to comment.