TypeScript/tests/baselines/reference/templateStringWithBackslashEscapes01.js
Daniel Rosenwasser c7db1c3781 Added baselines.
2015-04-16 15:54:14 -07:00

14 lines
299 B
TypeScript

//// [templateStringWithBackslashEscapes01.ts]
var a = `hello\world`;
var b = `hello\\world`;
var c = `hello\\\world`;
var d = `hello\\\\world`;
//// [templateStringWithBackslashEscapes01.js]
var a = "helloworld";
var b = "hello\\world";
var c = "hello\\world";
var d = "hello\\\\world";