/** * @file jokenpo_main.cpp * @author Louise Stella <louiselbarbosa@gmail.com> * @version 1.0 * * This is the main file for the Jokenpo library. * * Created for the "Linguagem de Programação I" class from the * Universidade Federal do Rio Grande do Norte em 24/06/2017. * */ #include "../include/jokenpo.hpp" #include <iostream> #include <cmath> #include <time.h> #include <cstdlib> using namespace std; using namespace jokenpo; int main(void){ string phrase = "Hello, world!"; print(phrase); jokenpo::jokenpo(); return 0; }