about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2022-10-02 18:50:38 +0000
committerelioat <elioat@tilde.institute>2022-10-02 18:50:38 +0000
commit382e8462e5050ac6996fff50a3e498c836c590c7 (patch)
treed10ba93206b874b5c96c038257d94c092649a6b0
parent0d23431d3c45cccfb204357bc7a65287c55e891d (diff)
downloadtour-382e8462e5050ac6996fff50a3e498c836c590c7.tar.gz
pas
-rwxr-xr-xfpc/build.sh3
-rw-r--r--fpc/hi.pas8
2 files changed, 11 insertions, 0 deletions
diff --git a/fpc/build.sh b/fpc/build.sh
new file mode 100755
index 0000000..adbd82c
--- /dev/null
+++ b/fpc/build.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+fpc hi.pas
diff --git a/fpc/hi.pas b/fpc/hi.pas
new file mode 100644
index 0000000..54c9c34
--- /dev/null
+++ b/fpc/hi.pas
@@ -0,0 +1,8 @@
+program hello;
+
+var inputString: string;
+begin
+  readln(inputString);
+  writeln('Hello, World.');
+  writeln(inputString);
+end.