init with hello world
This commit is contained in:
commit
d4260b52a9
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
bin/*
|
4
Makefile
Normal file
4
Makefile
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
bin/hello-world: src/hello_world.cc
|
||||
g++ src/hello_world.cc -o bin/hello-world
|
7
src/hello_world.cc
Normal file
7
src/hello_world.cc
Normal file
@ -0,0 +1,7 @@
|
||||
#include <iostream>
|
||||
|
||||
int main()
|
||||
{
|
||||
std::cout << "Hello World!" << std::endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user