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