BillySheet/src/main.cpp

11 lines
256 B
C++
Raw Normal View History

2022-01-08 20:02:04 +01:00
#include <iostream>
#include <spdlog/spdlog.h>
#include <spdlog/sinks/stdout_sinks.h>
2022-01-08 20:02:04 +01:00
int main() {
std::ios::sync_with_stdio(false);
spdlog::set_default_logger(spdlog::stdout_logger_st("console"));
SPDLOG_WARN("Hello world !");
2022-01-08 20:02:04 +01:00
return EXIT_SUCCESS;
}