Tested Pascal

This commit is contained in:
ilsix 2024-04-04 22:46:22 +02:00
parent cd3977cd19
commit 790b67ff99
2 changed files with 8 additions and 0 deletions

5
pascal/helloworld.pas Normal file
View File

@ -0,0 +1,5 @@
//compiles and runs successfully
program Hallo;
begin
writeln ('Hallo, Welt.');
end.

3
pascal/test.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
fpc helloworld.pas
./helloworld