Skip to content
Snippets Groups Projects
Commit 8894a45a authored by Debolskiy Andrey's avatar Debolskiy Andrey :bicyclist_tone5:
Browse files

added substraction

parent e45b6078
No related branches found
No related tags found
No related merge requests found
//
// Created by Andrey Debolskiy on 16.04.2022.
//
#include "exple-substract.h"
int exple::substract(int a, int b)
{
return (a - b) ;
}
//
// Created by Andrey Debolskiy on 16.04.2022.
//
#ifndef EXPLE_CMAKE_BUILD_EXPLE_SUBSTRACT_H
#define EXPLE_CMAKE_BUILD_EXPLE_SUBSTRACT_H
namespace exple
{
int substract( int a, int b);
}
#endif //EXPLE_CMAKE_BUILD_EXPLE_SUBSTRACT_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment