diff options
| -rw-r--r-- | challenge-104/abigail/README.md | 2 | ||||
| -rw-r--r-- | challenge-104/abigail/pascal/ch-1.p | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/challenge-104/abigail/README.md b/challenge-104/abigail/README.md index be78ee76e2..674f53ee11 100644 --- a/challenge-104/abigail/README.md +++ b/challenge-104/abigail/README.md @@ -32,9 +32,11 @@ even handle a single if statement. A single print statement is enough. * [Go](go/ch-1.go) * [Lua](lua/ch-1.lua) * [Node.js](node/ch-1.js) +* [Pascal](perl/ch-1.p) * [Perl](perl/ch-1.pl) * [Python](python/ch-1.py) * [Ruby](ruby/ch-1.rb) +* [SQL](sql/ch-1.sql) ### Blog diff --git a/challenge-104/abigail/pascal/ch-1.p b/challenge-104/abigail/pascal/ch-1.p new file mode 100644 index 0000000000..1ee40f4f42 --- /dev/null +++ b/challenge-104/abigail/pascal/ch-1.p @@ -0,0 +1,10 @@ +Program FUCS; + +(* *) +(* See ../README.md *) +(* *) + +begin + write ('0 1 1 2 1 3 2 3 1 4 3 5 2 5 3 4 1 5 4 7 3 8 5 7 2 7 '); + writeln ('5 8 3 7 4 5 1 6 5 9 4 11 7 10 3 11 8 13 5 12 7 9 2 9'); +end. |
