mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
10 lines
No EOL
159 B
C++
10 lines
No EOL
159 B
C++
#include <iostream>
|
|
#include "user.hpp"
|
|
|
|
int main()
|
|
{
|
|
User x(1000, "pass123");
|
|
std::cout << x.ChangePassword("pass123", "newpass123");
|
|
|
|
return 0;
|
|
} |