Skip to content

Commit

Permalink
add: Starlark lang
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Jun 9, 2024
1 parent 236a628 commit 35cd26f
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 @@ -288,6 +288,7 @@ var Exts = map[string]string{
"scm": "Scheme",
"sed": "sed",
"stan": "Stan",
"star": "Starlark",
"sml": "Standard ML",
"sol": "Solidity",
"sql": "SQL",
Expand Down Expand Up @@ -649,6 +650,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"Scheme": NewLanguage("Scheme", []string{";"}, [][]string{{"#|", "|#"}}),
"sed": NewLanguage("sed", []string{"#"}, [][]string{{"", ""}}),
"Stan": NewLanguage("Stan", []string{"//"}, [][]string{{"/*", "*/"}}),
"Starlark": NewLanguage("Starlark", []string{"#"}, [][]string{{"", ""}}),
"Solidity": NewLanguage("Solidity", []string{"//"}, [][]string{{"/*", "*/"}}),
"Bourne Shell": NewLanguage("Bourne Shell", []string{"#"}, [][]string{{"", ""}}),
"Standard ML": NewLanguage("Standard ML", []string{}, [][]string{{"(*", "*)"}}),
Expand Down

0 comments on commit 35cd26f

Please sign in to comment.