xref: /openbsd/regress/usr.sbin/btrace/tuple.bt (revision 3bef86f7)
1BEGIN {
2	$t = (1, 42, "something");
3	printf("%d %s\n", $t.1, $t.2);
4}
5