Compare commits

...

2 Commits

Author SHA1 Message Date
ilsix
945a097fa7 Tested COBOL 2024-04-04 22:30:28 +02:00
ilsix
2e6417f11f Tested HTML 2024-04-04 22:28:50 +02:00
4 changed files with 8 additions and 2 deletions

View File

@ -2,5 +2,5 @@ IDENTIFICATION DIVISION.
PROGRAM-ID. HELLOWORLD. PROGRAM-ID. HELLOWORLD.
PROCEDURE DIVISION. PROCEDURE DIVISION.
DISPLAY "Hello World in COBOL!". DISPLAY "Hello World!".
STOP RUN. STOP RUN.

3
cobol/test.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
cobc -x -free helloworld.cbl
./helloworld

View File

@ -1,3 +1,4 @@
<!--"runs" successfully-->
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>

2
html/test.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
firefox helloworld.html