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-1dev4 years ago8 downloads
0.4.22-13 years ago131 downloads
0.4.21-13 years ago35 downloads
0.4.19-13 years ago64 downloads
0.4.16-13 years ago43 downloads
0.4.6-13 years ago86 downloads
0.4.2-13 years ago64 downloads
0.4.0-13 years ago39 downloads
0.3.8-14 years ago47 downloads
0.3.7-14 years ago35 downloads
0.3.5-14 years ago33 downloads
0.3.2-14 years ago50 downloads
0.2.0-14 years ago71 downloads
0.1.2-14 years ago40 downloads
0.1-14 years ago34 downloads

Dependencies

lua >= 5.1

Labels

Manifests