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