Files
modern-cpp-tutorial/1/foo.c
2016-08-20 13:00:44 +08: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;
}