LiveScript icon indicating copy to clipboard operation
LiveScript copied to clipboard

Livescript 1.3.1REPL bug

Open ChitaGideon opened this issue 10 years ago • 2 comments

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> 

ChitaGideon avatar Nov 28 '14 15:11 ChitaGideon

Doesn't even need the new Error:

ls> "".constructor == String
true
ls> "".constructor == String
false

apaleslimghost avatar Nov 28 '14 16:11 apaleslimghost

Seems to be fixed in 1.4.0.

corwin-of-amber avatar Jan 02 '16 19:01 corwin-of-amber