All checks were successful
continuous-integration/drone/push Build is passing
* declare and implement Generator class and member methods * create an instance of Generator in main * call initialize_generator() from main
12 lines
210 B
C++
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;
|
|
}
|