aboutsummaryrefslogtreecommitdiff
path: root/challenge-144/abigail/go
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.freedom.nl>2021-12-20 18:30:29 +0100
committerAbigail <abigail@abigail.freedom.nl>2021-12-20 18:30:29 +0100
commit8254e0cdd38e99a76e12136123400a6160d6f160 (patch)
treea2837ca2d8697b754d5e472d8c7cbc082a6958a9 /challenge-144/abigail/go
parent1aa8ecccec917bbdee515fef036e8f84c47dae22 (diff)
downloadperlweeklychallenge-club-8254e0cdd38e99a76e12136123400a6160d6f160.tar.gz
perlweeklychallenge-club-8254e0cdd38e99a76e12136123400a6160d6f160.tar.bz2
perlweeklychallenge-club-8254e0cdd38e99a76e12136123400a6160d6f160.zip
Solutions for week 144, part 1
This is just a glorified Hello, World program. So, that's what you get!
Diffstat (limited to 'challenge-144/abigail/go')
-rw-r--r--challenge-144/abigail/go/ch-1.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/challenge-144/abigail/go/ch-1.go b/challenge-144/abigail/go/ch-1.go
new file mode 100644
index 0000000000..2328efdc3b
--- /dev/null
+++ b/challenge-144/abigail/go/ch-1.go
@@ -0,0 +1,15 @@
+package main
+
+//
+// See ../README.md
+//
+
+//
+// Run as: go run ch-1.go
+//
+
+import "fmt"
+
+func main () {
+ fmt . Print ("4, 6, 9, 10, 14, 15, 21, 22, 25, 26, 33, 34, 35, 38, 39, 46, 49, 51, 55, 57, 58, 62, 65, 69, 74, 77, 82, 85, 86, 87, 91, 93, 94, 95\n")
+} \ No newline at end of file