MoonPlus

MoonPlus is a compiler for Moonscript written in C++.

$ luarocks install moonplus

MoonPlus is a compiler with features from Moonscript language 0.5.0 and implementing new features to make Moonscript more up to date.

Used as a Lua module

require("moonp")("main") -- require `main.mp`

local moonp = require("moonp")
print(moonp.to_lua([[
f = -> print "hello world"
f!
]],{
implicit_return_root = true,
reserve_line_number = false,
lint_global = false
}))

Used as a command line tool

> moonp -h
Usage: moonp [options|files|directories] ...

-h Print this message
-e str Execute a file or raw codes
-t path Specify where to place compiled files
-o file Write output to file
-s Use spaces in generated codes instead of tabs
-m Generate minified codes
-p Write output to standard out
-b Dump compile time (doesn't write output)
-l Write line numbers from source codes
-v Print version
-- Read from standard in, print to standard out
(Must be first and only argument)

Execute without options to enter REPL, type symbol '$'
in a single line to start/stop multi-line mode

Versions

dev-1dev3 years ago8 downloads
0.4.22-12 years ago92 downloads
0.4.21-12 years ago14 downloads
0.4.19-12 years ago43 downloads
0.4.16-12 years ago22 downloads
0.4.6-12 years ago65 downloads
0.4.2-12 years ago43 downloads
0.4.0-12 years ago18 downloads
0.3.8-13 years ago26 downloads
0.3.7-13 years ago14 downloads
0.3.5-13 years ago12 downloads
0.3.2-13 years ago29 downloads
0.2.0-13 years ago50 downloads
0.1.2-13 years ago19 downloads
0.1-13 years ago13 downloads

Dependencies

lua >= 5.1

Labels

Manifests