Skip to content

Commit

Permalink
add Factor lang
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Nov 13, 2022
1 parent 5e5915c commit 668dce9
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 @@ -116,6 +116,7 @@ var Exts = map[string]string{
"ex": "Elixir",
"exs": "Elixir",
"feature": "Gherkin",
"factor": "Factor",
"fish": "Fish",
"fr": "Frege",
"fst": "F*",
Expand Down Expand Up @@ -507,6 +508,7 @@ func NewDefinedLanguages() *DefinedLanguages {
"Lilypond": NewLanguage("Lilypond", []string{"%"}, [][]string{{"", ""}}),
"LISP": NewLanguage("LISP", []string{";;"}, [][]string{{"#|", "|#"}}),
"LiveScript": NewLanguage("LiveScript", []string{"#"}, [][]string{{"/*", "*/"}}),
"Factor": NewLanguage("Factor", []string{"! "}, [][]string{{"", ""}}),
"FORTRAN Legacy": NewLanguage("FORTRAN Legacy", []string{"c", "C", "!", "*"}, [][]string{{"", ""}}),
"FORTRAN Modern": NewLanguage("FORTRAN Modern", []string{"!"}, [][]string{{"", ""}}),
"Gherkin": NewLanguage("Gherkin", []string{"#"}, [][]string{{"", ""}}),
Expand Down

0 comments on commit 668dce9

Please sign in to comment.