Compare commits

..

2 Commits

Author SHA1 Message Date
ilsix
790b67ff99 Tested Pascal 2024-04-04 22:46:22 +02:00
ilsix
cd3977cd19 gitignore 2024-04-04 22:46:13 +02:00
3 changed files with 10 additions and 1 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
helloworld* helloworld
helloworld.o

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