xref: /openbsd-src/regress/usr.sbin/btrace/printf.bt (revision 3174595f5e303500213b3f972d1bbc10696cb033)
1BEGIN {
2	$c = 0x41; // 'A'
3	printf("%c%c%c\n", $c, 0x41, 65);
4
5	$t = "two "  // multi-line string
6		   "times" /* with comments */ "";
7	printf("%s multi-"
8	       "line\n", $t);
9}
10