mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-13 16:57:54 -05:00
* Documentation for triple backticks and escaping backticks * Better explanation of escaped backticks within triple-backticks block
6 lines
87 B
CoffeeScript
6 lines
87 B
CoffeeScript
```
|
|
function time() {
|
|
return `The time is ${new Date().toLocaleTimeString()}`;
|
|
}
|
|
```
|