tmp.c/account.cpp
Vincent Batts af02cae0ba
meson and C++ files as *.cpp
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2025-02-08 10:16:33 -05:00

12 lines
183 B
C++

#include <iostream>
#include <cmath>
#include <cstdlib>
using namespace std;
#include "account.h"
int main(int argc, char* argv[]) {
Account account(0.0);
return EXIT_SUCCESS;
}