sphinx-tutorial/cpp-example/src/driver.cpp

6 lines
64 B
C++
Raw Normal View History

2024-01-22 18:12:01 +01:00
#include "driver.h"
int add(int x, int y)
{
return x + y;
}