From 6bc3b537bf52ac795cf8ddd1913802531b5521db Mon Sep 17 00:00:00 2001 From: David M Williams Date: Thu, 15 Oct 2020 20:46:53 +1100 Subject: [PATCH] Create helloworld.pas --- scripts/helloworld.pas | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 scripts/helloworld.pas diff --git a/scripts/helloworld.pas b/scripts/helloworld.pas new file mode 100644 index 0000000..ed7cd1c --- /dev/null +++ b/scripts/helloworld.pas @@ -0,0 +1,5 @@ +program Hello; + +begin + writeln ('Hello, world.'); +end.