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