#include "fortuna.h" int main() { fmt::print("[*] doing evil stuff\n"); fortuna::Fortuna f; try { f.random_data(4); // number of bytes requested } catch (std::exception& e) { fmt::print("[!] exiting due to \"{}\"\n", e.what()); exit(0); } return 0; }