-
***
### /seanpm2001/Learn-MoonScript/ Contributor attribution
If you are a contributor on this project, you will be credited in this thread. @all-contributors will be helping out here.
***
-
During the `./install.sh` step of the [Torch installation instructions][1], I receive the following error:
```
Missing dependencies for nn:
moses >= 1.0
Warning: Failed searching manifest: Faile…
ghost updated
7 years ago
-
We use a lot of callbacks in moonscript. There is a very handy way in coffeescript to check if a callback exists:
for example:
``` coffee
callback? "Hello CoffeeScript!"
```
will generate:
``` jav…
-
Just think about some improvements to MoonPlus that worth to consider:
1. Exist OP + "with" keyword. Let look at this code:
```moonscript
with io.open(test.txt, "w")?
\write "hello"
\close!…
-
https://lua.ren/topic/394/
-
The full description:
```
Failed (1)
● plenary 0.12ms start
`lua` version `5.1` needed, but found `Lua 5.4.4 Copyright (C) 1994-2022 Lua.org, PUC-Rio`
`lua5.1` or `lua` o…
-
It would be awesome to have [Julia](https://julialang.org) included among the default languages here. (I don't know MoonScript, otherwise I'd try my hand at a PR for this.)
-
Hello, I noticed that the xor operator even though it exists in LUA is not usable in moonscript:
The following code:
`c = a ~ b` in moonscript
gives the following output:
`local c = a(~b)` in lu…
-
Hello
I'm just discovering moonscript and it's a beautiful language ! big big kuddos !
I'm looking at a way to self document my function in moonscript so I can have something similar to python:…
-
While doing some lexing work for moonscript I noticed that the manual is incorrect. It says that moonscript supports the same syntax for literals as Lua, which seems to be false at least for numbers. …