mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
1deaec2b41
Closes #112
8 lines
144 B
C++
8 lines
144 B
C++
#include <cstdio>
|
|
#include <tuple>
|
|
|
|
int main() {
|
|
auto tpl = std::make_tuple(1, 2);
|
|
printf("Hello from C++11 %d\n", std::get<0>(tpl));
|
|
}
|