mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
14 lines
No EOL
270 B
C++
14 lines
No EOL
270 B
C++
#include <iostream>
|
|
#include "user.hpp"
|
|
|
|
int main()
|
|
{
|
|
User a(1000, "pass123");
|
|
User b(0, "pass123");
|
|
a.ChangePassword("pass123", "newpass123");
|
|
User::SendFunds(a, b, 250, "newpass123");
|
|
a.GetBal();
|
|
a.VerifyPassword("newpass124");
|
|
|
|
return 0;
|
|
} |