Skip to content
Snippets Groups Projects
jokenpo.cpp 584 B
Newer Older
/**
 * @file       jokenpo.cpp
 * @author     Louise Stella    <louiselbarbosa@gmail.com> 
 * @version    1.0
 *
 * This is the implementation file for the jokenpo functions used on 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 <iostream>
#include "../include/jokenpo.hpp"

using namespace std;

namespace exemplo{

    void print( std::string phrase ){
        cout << phrase << endl;
    }

    int sum( int a, int b ){
        return ( a + b );
    }    

}