This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
fortuna/main.cpp
surtur 01eadae32f
All checks were successful
continuous-integration/drone/push Build is passing
feat: move from structural to object paradigm
* declare and implement Generator class and member methods
* create an instance of Generator in main
* call initialize_generator() from main
2021-11-02 05:10:58 +01:00

12 lines
210 B
C++

#include <iostream>
#include "generator.h"
int main() {
using std::cout;
using std::endl;
cout << "[*] doing evil stuff" << endl;
fortuna::generator::Generator g{};
g.initialize_generator();
return 0;
}