From f3437cc5d82b5c17f249ab901ab94f12e58ee6bb Mon Sep 17 00:00:00 2001 From: NMGSGame Date: Sun, 1 Oct 2017 16:25:21 +0200 Subject: [PATCH] Add awk Hello World Reference issue #1 --- awk.awk | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 awk.awk diff --git a/awk.awk b/awk.awk new file mode 100644 index 00000000..3037f85c --- /dev/null +++ b/awk.awk @@ -0,0 +1,3 @@ +BEGIN { +print "Hello World" +}