Compare commits
5 Commits
df8b5a1a08
...
7cc8e4e45f
Author | SHA1 | Date | |
---|---|---|---|
|
7cc8e4e45f | ||
|
a6704f4816 | ||
|
27244b028c | ||
|
65397dc60a | ||
|
a3b26dc065 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
helloworld*
|
|
@ -1,3 +1,4 @@
|
||||||
|
//compiles and runs successfully
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
|
3
c++/test.sh
Executable file
3
c++/test.sh
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
g++ helloworld.cpp -o helloworld
|
||||||
|
./helloworld
|
|
@ -1,3 +1,4 @@
|
||||||
|
//compiles and runs successfully
|
||||||
#include<stdio.h>
|
#include<stdio.h>
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
|
3
c/test.sh
Executable file
3
c/test.sh
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
gcc helloworld.c -o helloworld
|
||||||
|
./helloworld
|
|
@ -1,3 +1,4 @@
|
||||||
<?php
|
<?php
|
||||||
echo 'Hello World!';
|
//runs successfully
|
||||||
|
echo "Hello World!\n";
|
||||||
?>
|
?>
|
2
php/test.sh
Executable file
2
php/test.sh
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
php helloworld.php
|
Loading…
Reference in New Issue
Block a user