1function test() { 2 let a = "test\n"; 3 print(a); 4 let b = "test"; 5 print(`${b}\n`); 6 print(`${b}\t`); 7 print(`${b}\'`); 8 print(`${b}\"`); 9 print(`${b}\?`); 10 print(`${b}\0`); 11} 12 13test();