meson and C++ files as *.cpp

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2025-02-08 10:16:33 -05:00
parent d77bfd2366
commit af02cae0ba
Signed by: vbatts
GPG key ID: E30EFAA812C6E5ED
3 changed files with 12 additions and 0 deletions

12
account.cpp Normal file
View file

@ -0,0 +1,12 @@
#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;
}