From 790b67ff9998c9d5614b16d35c765daf48dd9d4f Mon Sep 17 00:00:00 2001 From: ilsix Date: Thu, 4 Apr 2024 22:46:22 +0200 Subject: [PATCH] Tested Pascal --- pascal/helloworld.pas | 5 +++++ pascal/test.sh | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 pascal/helloworld.pas create mode 100755 pascal/test.sh diff --git a/pascal/helloworld.pas b/pascal/helloworld.pas new file mode 100644 index 0000000..c642665 --- /dev/null +++ b/pascal/helloworld.pas @@ -0,0 +1,5 @@ +//compiles and runs successfully +program Hallo; +begin + writeln ('Hallo, Welt.'); +end. diff --git a/pascal/test.sh b/pascal/test.sh new file mode 100755 index 0000000..bba07c0 --- /dev/null +++ b/pascal/test.sh @@ -0,0 +1,3 @@ +#!/bin/bash +fpc helloworld.pas +./helloworld \ No newline at end of file