small gcc introduction

This commit is contained in:
2022-01-01 21:37:36 +01:00
parent 010f67b881
commit 8cbf6437f5
5 changed files with 168 additions and 0 deletions

8
GCC Intro/hello.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, world!" << endl;
return 0;
}