Files
coffeescript/documentation/examples/embedded_block.coffee
Geoffrey Booth 992eb49e92 Docs for triple-backticks and escaping backticks (#4369)
* Documentation for triple backticks and escaping backticks

* Better explanation of escaped backticks within triple-backticks block
2016-11-22 22:09:35 -08:00

6 lines
87 B
CoffeeScript

```
function time() {
return `The time is ${new Date().toLocaleTimeString()}`;
}
```