gkz / LiveScript

LiveScript is a language which compiles to JavaScript. It has a straightforward mapping to JavaScript and allows you to write expressive code devoid of repetitive boilerplate. While LiveScript adds many features to assist in functional style programming, it also has many improvements for object oriented and imperative programming.
http://livescript.net
MIT License
2.31k stars 156 forks source link

raw javascript in livescript? #1031

Closed determin1st closed 6 years ago

determin1st commented 6 years ago

Is it possible to mark some block of livescript and leave it untouched by compiler? I know, that lsc leaves long multi-line JS comment blocks /..../ as is, so it should not be a big deal to implement? It may be useful in conversion of JS code to livescript.

..like assembly inserts in C

vendethiel commented 6 years ago
``
let a = 1;
``