module pind.samples.ja.tuples.tuples_1; import std.stdio; import std.typecons; void main() { auto t = tuple(42, "hello"); writeln(t); }