mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 20:54:39 +03:00
16 lines
179 B
C
16 lines
179 B
C
//
|
|
// foo.c
|
|
//
|
|
// chapter 1 introduction
|
|
// modern cpp tutorial
|
|
//
|
|
// created by changkun at changkun.de
|
|
//
|
|
|
|
#include "foo.h"
|
|
|
|
// C code
|
|
int add(int x, int y) {
|
|
return x+y;
|
|
}
|