started changes

This commit is contained in:
Krishna Ayyalasomayajula
2026-02-24 17:19:44 -06:00
parent 1a5bc7beb1
commit a22d804070
9 changed files with 281 additions and 0 deletions
+5
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
View File
@@ -0,0 +1,7 @@
#include <iostream>
#include <spdlog/spdlog.h>
int main() {
spdlog::info("Hello world from logger");
return 0;
}