mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 04:34:40 +03:00
16 lines
182 B
C
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;
|
|
}
|