TypeScript/tests/cases/conformance/es6/templates/templateStringWithBackslashEscapes01.ts

6 lines
107 B
TypeScript
Raw Normal View History

2015-04-17 00:26:59 +02:00

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