Skip to content

Commit

Permalink
add Berry lang
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Oct 9, 2023
1 parent 2cf4d60 commit 1b44074
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 @@ -106,6 +106,7 @@ var Exts = map[string]string{
"bat": "Batch",
"btm": "Batch",
"bb": "BitBake",
"be": "Berry",
"cairo": "Cairo",
"carbon": "Carbon",
"cbl": "COBOL",
Expand Down Expand Up @@ -510,6 +511,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"Awk": NewLanguage("Awk", []string{"#"}, [][]string{{"", ""}}),
"Arduino Sketch": NewLanguage("Arduino Sketch", []string{"//"}, [][]string{{"/*", "*/"}}),
"Batch": NewLanguage("Batch", []string{"REM", "rem"}, [][]string{{"", ""}}),
"Berry": NewLanguage("Berry", []string{"#"}, [][]string{{"#-", "-#"}}),
"BASH": NewLanguage("BASH", []string{"#"}, [][]string{{"", ""}}),
"BitBake": NewLanguage("BitBake", []string{"#"}, [][]string{{"", ""}}),
"C": NewLanguage("C", []string{"//"}, [][]string{{"/*", "*/"}}),
Expand Down

0 comments on commit 1b44074

Please sign in to comment.