tmp.c/account.cpp
Vincent Batts bfa3196b62
account: split class logic out and have it building
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2025-02-08 11:09:09 -05:00

13 lines
202 B
C++

#include <iostream>
#include <cmath>
#include <cstdlib>
using namespace std;
#include "account.h"
Account::Account ( double initial_balance ) : balance(initial_balance) {
}
Account::~Account () {
}