Add Initial commit

This commit is contained in:
Lev
2021-04-12 19:18:50 -05:00
parent 2c82de28f5
commit d723ec8158
3 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
#include <iostream>
int main(int argc, char const *argv[])
{
// 1 print help
std::cout << "3: Make an offer " << std::endl;
// 2 print exchange stats
std::cout << "2: Print exchange stats " << std::endl;
// 3 make an offer
std::cout << "3: Make an offer " << std::endl;
// 4 make a bid
std::cout << "4: Make a bid " << std::endl;
// 5 print wallet
std::cout << "5: Print wallet " << std::endl;
// 6 continue
std::cout << "6: Continue" << std::endl;
return 0;
}
// Used the command "g++ main.cpp -o merkletrade" to generated merkletrade.exe