Skip to content
Snippets Groups Projects
Commit c345859b authored by vonopr's avatar vonopr
Browse files

Add source files

parent 7b40e69f
No related branches found
No related tags found
No related merge requests found
#include "exple-mul.h"
int exple::mul(int a, int b)
{
int result = 0;
for (int n = 0; n<b; n++)
{
result += a;
}
return result;
}
namespace exple
{
int mul( int a, int b);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment