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