From 4699f600935129b16a48074d8534411ce935db17 Mon Sep 17 00:00:00 2001 From: Abigail Date: Mon, 3 Jan 2022 12:25:51 +0100 Subject: Week 146 Part 1 is a fixed output challenge, so, just a glorified Hello World program. It's stolen from project Euler, task 7. --- challenge-146/abigail/awk/ch-1.awk | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 challenge-146/abigail/awk/ch-1.awk (limited to 'challenge-146/abigail/awk/ch-1.awk') diff --git a/challenge-146/abigail/awk/ch-1.awk b/challenge-146/abigail/awk/ch-1.awk new file mode 100644 index 0000000000..53c43cdbc1 --- /dev/null +++ b/challenge-146/abigail/awk/ch-1.awk @@ -0,0 +1,13 @@ +#!/usr/bin/awk + +# +# See ../README.md +# + +# +# Run as: awk -f ch-1.awk +# + +BEGIN { + print "104743" +} \ No newline at end of file -- cgit