Compare commits

...

5 Commits

Author SHA1 Message Date
ilsix
7cc8e4e45f Tested PHP 2024-04-04 21:50:21 +02:00
ilsix
a6704f4816 Tested PHP 2024-04-04 21:47:49 +02:00
ilsix
27244b028c Tested C++ 2024-04-04 21:45:36 +02:00
ilsix
65397dc60a Tested C 2024-04-04 21:44:52 +02:00
ilsix
a3b26dc065 gitignore 2024-04-04 21:44:43 +02:00
7 changed files with 13 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
helloworld*

View File

@ -1,3 +1,4 @@
//compiles and runs successfully
#include <iostream> #include <iostream>
int main() { int main() {

3
c++/test.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
g++ helloworld.cpp -o helloworld
./helloworld

View File

@ -1,3 +1,4 @@
//compiles and runs successfully
#include<stdio.h> #include<stdio.h>
int main() { int main() {

3
c/test.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
gcc helloworld.c -o helloworld
./helloworld

View File

@ -1,3 +1,4 @@
<?php <?php
echo 'Hello World!'; //runs successfully
echo "Hello World!\n";
?> ?>

2
php/test.sh Executable file
View File

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