started changes

This commit is contained in:
2026-02-24 17:18:41 -06:00
parent 1a5bc7beb1
commit a22d804070
9 changed files with 281 additions and 0 deletions

5
src/main-810.cpp Normal file
View File

@@ -0,0 +1,5 @@
#include <spdlog/spdlog.h>
int main (int argc, char *argv[]) {
spdlog::info("Running solution to problem 810");
return 0;
}

7
src/main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <iostream>
#include <spdlog/spdlog.h>
int main() {
spdlog::info("Hello world from logger");
return 0;
}