Language
Compiler
Options
$
--- my tuple for rvalue ---
123
456
hello
world!!
type of aTuple = tuple<int, int, String>
--- my tuple for lvalue ---
123
456
hello
world!!
z=hello
type of aTuple2 = tuple<int, int, String>
--- std::tuple for lvalue ---
123
456
hello
world!!
z=hello
type of aStdTuple = std::tuple<int, int, String>
Exit Code:
0