mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 04:39:23 +08:00
8 lines
134 B
C++
8 lines
134 B
C++
# include <biu.hpp>
|
|
int main()
|
|
{
|
|
biu::Logger::Guard log("test", nullptr, std::ofstream());
|
|
log.info("hello world");
|
|
return 0;
|
|
}
|