mirror of
https://github.com/changkun/modern-cpp-tutorial.git
synced 2025-12-17 04:34:40 +03:00
14 lines
139 B
C++
14 lines
139 B
C++
//
|
|
// 1.1.cpp
|
|
// c++1x tutorial
|
|
//
|
|
// created by changkun at changkun.de
|
|
//
|
|
|
|
#include "foo.h"
|
|
|
|
int main() {
|
|
add(1, 2);
|
|
return 0;
|
|
}
|