inital commit

This commit is contained in:
Richard Holland
2019-09-24 15:01:44 +10:00
commit 2b8b9dd267
4 changed files with 25 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
*~
*.swp
*.swo
.*.sw?
.DS_Store

2
README.md Normal file
View File

@@ -0,0 +1,2 @@
# Hot Pocket Consensus Engine

4
makefile Normal file
View File

@@ -0,0 +1,4 @@
all:
mkdir -p build
g++ src/*.cpp -std=c++17 -o build/hpcore
echo 'build successful, binary in '`pwd`'/build/hpcore'

14
src/main.cpp Normal file
View File

@@ -0,0 +1,14 @@
/**
Entry point for HP Core
**/
#include <cstdio>
#include <iostream>
using namespace std;
int main(int argc, char** argv) {
cout << "exited normally\n";
return 0;
}