From a324a02253d19205b99ab8f8477a9a460c0ba4ff Mon Sep 17 00:00:00 2001 From: Abigail Date: Mon, 30 Nov 2020 16:37:38 +0100 Subject: Ruby solution for week 89/part 2 --- challenge-089/abigail/ruby/ch-2.rb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 challenge-089/abigail/ruby/ch-2.rb diff --git a/challenge-089/abigail/ruby/ch-2.rb b/challenge-089/abigail/ruby/ch-2.rb new file mode 100644 index 0000000000..c4bc2d5bee --- /dev/null +++ b/challenge-089/abigail/ruby/ch-2.rb @@ -0,0 +1,9 @@ +#!/usr/bin/ruby + +# +# For challenge and notes, see ../perl/ch-2.pl +# + +puts "8 1 6"; +puts "3 5 7"; +puts "4 9 2"; -- cgit