1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00
jashkenas--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

5 lines
87 B
CoffeeScript

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