TypeScript/tests/baselines/reference/templateStringWithEmbeddedMultiplication.js
2014-10-23 15:06:05 -07:00

6 lines
167 B
TypeScript

//// [templateStringWithEmbeddedMultiplication.ts]
var x = `abc${ 7 * 6 }def`;
//// [templateStringWithEmbeddedMultiplication.js]
var x = "abc" + 7 * 6 + "def";