feat: romer model

This commit is contained in:
Barrett Ruth 2024-07-03 10:41:10 -05:00
parent b6b3e08886
commit 71a959708d
7 changed files with 515 additions and 31 deletions

10
map.cc Normal file
View file

@ -0,0 +1,10 @@
#include <fstream>
#include <iostream>
int main() {
std::ifstream ifs{"aggieland.txt"};
std::string read1;
int read2;
ifs >> read1 >> read2;
std::cout << read1 << read2;
}