Skip to content

Commit

Permalink
add Dhall lang
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Jul 16, 2019
1 parent aaf8acb commit 7fe2158
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 @@ -99,6 +99,7 @@ var Exts = map[string]string{
"cu": "CUDA",
"d": "D",
"dart": "Dart",
"dhall": "Dhall",
"dtrace": "DTrace",
"dts": "Device Tree",
"dtsi": "Device Tree",
Expand Down Expand Up @@ -445,6 +446,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"CUDA": NewLanguage("CUDA", []string{"//"}, [][]string{{"/*", "*/"}}),
"D": NewLanguage("D", []string{"//"}, [][]string{{"/*", "*/"}}),
"Dart": NewLanguage("Dart", []string{"//"}, [][]string{{"/*", "*/"}}),
"Dhall": NewLanguage("Dhall", []string{"--"}, [][]string{{"{-", "-}"}}),
"DTrace": NewLanguage("DTrace", []string{}, [][]string{{"/*", "*/"}}),
"Device Tree": NewLanguage("Device Tree", []string{"//"}, [][]string{{"/*", "*/"}}),
"Eiffel": NewLanguage("Eiffel", []string{"--"}, [][]string{{"", ""}}),
Expand Down

0 comments on commit 7fe2158

Please sign in to comment.