Files
modern-cpp-tutorial/code/1/foo.c
2018-03-26 09:08:36 +02:00

14 lines
138 B
C

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