aboutsummaryrefslogtreecommitdiff
path: root/challenge-089
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-089')
-rw-r--r--challenge-089/abigail/README1
-rw-r--r--challenge-089/abigail/pascal/ch-2.p11
2 files changed, 12 insertions, 0 deletions
diff --git a/challenge-089/abigail/README b/challenge-089/abigail/README
index 109eb3299e..7f1749931a 100644
--- a/challenge-089/abigail/README
+++ b/challenge-089/abigail/README
@@ -18,6 +18,7 @@ Solution by Abigail
* MUMPS
* Node.js
* Ook!
+ * Pascal
* Perl
* Python
* Ruby
diff --git a/challenge-089/abigail/pascal/ch-2.p b/challenge-089/abigail/pascal/ch-2.p
new file mode 100644
index 0000000000..43390c415b
--- /dev/null
+++ b/challenge-089/abigail/pascal/ch-2.p
@@ -0,0 +1,11 @@
+Program MagicSquare;
+
+(* *)
+(* For challenge and notes, see ../perl/ch-2.pl *)
+(* *)
+
+begin
+ writeln ('8 1 6');
+ writeln ('3 5 7');
+ writeln ('4 9 2');
+end.