Compare commits

..

No commits in common. "7cc8e4e45f69ad13ad3c867ea00b12142d92f170" and "df8b5a1a08d9cca0cd7fba37ea73696d72baaaa7" have entirely different histories.

7 changed files with 1 additions and 13 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
helloworld*

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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