Compare commits

..

No commits in common. "59d332e157afe5ee9f1beacb110ab34c6d86b4ff" and "d47a243bf3a8302e641f2590c255b67186f1f433" have entirely different histories.

5 changed files with 4 additions and 21 deletions

1
.gitignore vendored
View File

@ -1,5 +1,4 @@
#all regularly compiled binaries #all regularly compiled binaries
echo
helloworld helloworld
#Haskell #Haskell

View File

@ -4,7 +4,7 @@
|------------|-------------|------|----------|-------------|----------------|----------| |------------|-------------|------|----------|-------------|----------------|----------|
| ALGOL | | | | | | | | ALGOL | | | | | | |
| BASIC | | | | | | | | BASIC | | | | | | |
| C | Done | Done | | | | | | C | Done | | | | | |
| C# | Done | | | | | | | C# | Done | | | | | |
| C++ | Done | | | | | | | C++ | Done | | | | | |
| COBOL | Done | | | | | | | COBOL | Done | | | | | |

View File

@ -1,6 +0,0 @@
#include <stdio.h>
int main( int argc, char *argv[] ) {
printf("Echo: %s\n", argv[1]);
return 0;
}

View File

@ -1,4 +1,5 @@
#include <stdio.h> //compiles and runs successfully
#include<stdio.h>
int main() { int main() {
printf("Hello World!\n"); printf("Hello World!\n");

View File

@ -1,14 +1,3 @@
#!/bin/bash #!/bin/bash
echo "### Compiling..."
gcc helloworld.c -o helloworld gcc helloworld.c -o helloworld
gcc echo.c -o echo
echo "### Hello World:"
./helloworld ./helloworld
echo "### Echo:"
./echo Word!
echo "### Cleaning up..."
rm helloworld
rm echo