Skip to content
Snippets Groups Projects
main.cpp 582 B
Newer Older
Louise's avatar
Louise committed
/**
 * @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.
 * 
 */


Louise's avatar
Louise committed
#include "../include/jokenpo.hpp"
Louise's avatar
Louise committed
#include <iostream>
#include <cmath>
#include <time.h>
#include <cstdlib>

Louise's avatar
Louise committed

using namespace std;
Louise's avatar
Louise committed
using namespace jokenpo;
Louise's avatar
Louise committed

int main(void){

    string phrase = "Hello, world!";

    print(phrase);

Louise's avatar
Louise committed
    jokenpo::jokenpo();
Louise's avatar
Louise committed

    return 0;

}