TypeScript/tests/cases/conformance/es6/templates/templateStringWithBackslashEscapes01.ts
Daniel Rosenwasser a634e6770a Added tests.
2015-04-16 15:26:59 -07:00

6 lines
107 B
TypeScript

var a = `hello\world`;
var b = `hello\\world`;
var c = `hello\\\world`;
var d = `hello\\\\world`;