Files
modern-cpp-tutorial/code/1/foo.c
2018-03-30 14:18:50 +02:00

15 lines
164 B
C

//
// foo.c
//
// chapter 1 introduction
// c++1x tutorial
//
// created by changkun at changkun.de
//
#include "foo.h"
int add(int x, int y) {
return x+y;
}