Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Language

C++

Compiler

gcc HEAD 14.0.0 20231230 (experimental)

Options
Don't Use Boost
C++2b(GNU)
no pedantic

$ g++ prog.cc -std=gnu++2b
Tuple<int, double, string> t(1, 2.0, "3,4")
get<0>(t) = 100;

get<0>(t):	100
get<1>(t):	2
get<2>(t):	3,4
Exit Code:
0