mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00

* Documentation for triple backticks and escaping backticks * Better explanation of escaped backticks within triple-backticks block
5 lines
87 B
CoffeeScript
5 lines
87 B
CoffeeScript
```
|
|
function time() {
|
|
return `The time is ${new Date().toLocaleTimeString()}`;
|
|
}
|
|
```
|