/*
 * L'implementation d'une fonction
 */

#include "function_add.h"

int add(int num1, int num2)
{
    return num1 + num2;
}
