leaf

Results 383 comments of leaf
trafficstars

How it works is intentional. * `@hello "world"` is shorthand for `self\hello "world"` * `@hello` is shorthand for `self.hello` Since both of these operations are the most common uses of...

I think this is a pretty cool idea actually. Do any other languages do this?

I've pretty much already build the community tools: https://github.com/leafo/lapis-community Also I much prefer using moonscript to power moonscript related things. I just want to get and idea if people would...

I'm happy to create a discord, since I now have it open more than I do IRC. I'll probably call it "moonscript" but it will have channels for lapis and...

Here it is https://discord.gg/Y75ZXrD I'll start adding it places

I get this error when trying to run moonc after your patch. Here's a similar issue with that popped up with lpeg 0.12: https://github.com/mascarenhas/cosmo/issues/5 ``` bash bin/moonc moon/ moonscript/ lua:...

The line number fix was manually merged in. The multiline comment was not. I've been lingering on adding it because it makes parsing about 20% slower if I remember correctly....

Thanks for the this patch, it's going to take me a bit to go through it, I'll try to get back to you soon. Feel free to bug me on...

This branch should still work, the build process on windows hasn't changed https://github.com/leafo/moonscript/tree/binaries

This actually isn't possible in lua. ``` > a = b = c stdin:1: unexpected symbol near '=' ``` Assignment isn't an expression (unlike a lot of other languages). Right...