mirror of
https://github.com/EvernodeXRPL/hpcore.git
synced 2026-04-29 15:37:59 +00:00
inital commit
This commit is contained in:
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
*~
|
||||
*.swp
|
||||
*.swo
|
||||
.*.sw?
|
||||
.DS_Store
|
||||
4
makefile
Normal file
4
makefile
Normal 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
14
src/main.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user