13 lines
333 B
C++
13 lines
333 B
C++
#include <stdio.h>
|
|
#include "journal.hpp"
|
|
#include <iostream>
|
|
|
|
int main(int argc, const char* argv[]) {
|
|
std::cin.get();
|
|
journal::init_stdout();
|
|
printf("Hello, Alloy!\n");
|
|
journal::info("some info!");
|
|
journal::error("something went wrong!");
|
|
journal::trace("just some very verbose stuff here");
|
|
return 1;
|
|
} |