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 155 forks source link

Livescript 1.3.1REPL bug #618

Open ChitaGideon opened 9 years ago

ChitaGideon commented 9 years ago

type in 'lsc' commands

LiveScript 1.3.1 - use 'lsc --help' for more information
ls> "".constructor == String
true
ls> e = new Error
[Error]
ls> "".constructor == String
false
ls> 
apaleslimghost commented 9 years ago

Doesn't even need the new Error:

ls> "".constructor == String
true
ls> "".constructor == String
false
corwin-of-amber commented 8 years ago

Seems to be fixed in 1.4.0.