New language: Awk

This commit is contained in:
Radon Rosborough 2020-07-19 10:27:41 -06:00
parent c2adccae3b
commit d58c9841a6
2 changed files with 11 additions and 0 deletions

View File

@ -110,6 +110,14 @@ message:
run: "./main",
template: `val _ = print ("Hello, world!\\n")
implement main0 () = ()
`,
},
awk: {
aliases: ["gawk", "mawk"],
name: "Awk",
main: "main.awk",
run: `awk -f main.awk`,
template: `BEGIN { print "Hello, world!" }
`,
},
bash: {

View File

@ -25,6 +25,9 @@ asciidoc
# ATS
ats2-lang
# Awk
mawk
# BASIC
bwbasic