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

16 lines
182 B
C

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