let foo = true;
`hello ${foo ? `Mr ${name}` : 'there'}`;
foo = false;
html`
Hello world
`;
html`Hello times ${10} world
`;
html`
  
    ${repeat(['a', 'b', 'c'], (v) => {
      return html`- ${v}`;
    }}
`;
css`
  body {
    color: red;
  }
`;
// Ensure that we're back in TypeScript mode.
var foo = 10;