MCPcopy Create free account
hub / github.com/changkun/modern-cpp-tutorial / main

Function main

code/8/8.2.cpp:20–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18}
19
20int main() {
21 std::string str = R"(C:\\What\\The\\Fxxk)";
22 std::cout << str << std::endl;
23
24 int value = 0b1001010101010;
25 std::cout << value << std::endl;
26
27
28 auto str = "abc"_wow1;
29 auto num = 1_wow2;
30 std::cout << str << std::endl;
31 std::cout << num << std::endl;
32 return 0;
33}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected