removed header

This commit is contained in:
EntireTwix 2021-04-02 12:51:34 -07:00
parent d263ae4966
commit ffce6bf2f4
2 changed files with 1 additions and 2 deletions

View file

@ -1,6 +1,5 @@
#pragma once
#include <string>
#include <mutex>
struct User
{

View file

@ -9,7 +9,7 @@ int main()
std::cout << Bank.AdminAddUser("root", "Jollymonsam", 2500, "pass123") << '\n';
std::cout << Bank.GetBal("Jollymonsam") << '\n';
std::cout << Bank.SendFunds("Jollymonsam", "Twix", 333, "pass123") << '\n';
std::cout << Bank.GetBal("Twix") << " | " << Bank.GetBal("Jollymonsam") << '\n';
std::cout << Bank.GetBal("Twix") << " : " << Bank.GetBal("Jollymonsam") << '\n';
return 0;
}