Skip to content

Commit

Permalink
support Awk
Browse files Browse the repository at this point in the history
  • Loading branch information
hhatto committed Apr 1, 2016
1 parent 95be1ee commit cf604bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ func main() {

action_script := NewLanguage("ActionScript", "//", "/*", "*/")
asm := NewLanguage("Assembly", "", "", "")
awk := NewLanguage("Awk", "#", "", "")
bash := NewLanguage("BASH", "#", "", "")
batch := NewLanguage("Batch", "REM", "", "")
c := NewLanguage("C", "//", "/*", "*/")
Expand Down Expand Up @@ -173,6 +174,7 @@ func main() {
languages := map[string]*Language{
"as": action_script,
"s": asm,
"awk": awk,
"bat": batch,
"btm": batch,
"cmd": batch,
Expand Down

0 comments on commit cf604bf

Please sign in to comment.