Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,38 @@
}
]
},
"key_features": [
{
"title": "Concise, Readable Code",
"content": "MoonScript's expressive syntax means cleaner, more readable code with less boilerplate than Lua.",
"icon": "expressive"
},
{
"title": "Seamlessly Integrate",
"content": "Compiles to Lua, making it easy to embed into apps, games, or services.",
"icon": "embeddable"
},
{
"title": "High Performance",
"content": "Benefits from Lua's fast VM (and LuaJIT), ensuring rapid execution of your compiled code.",
"icon": "fast"
},
{
"title": "Lightweight Footprint",
"content": "Like Lua, it's small. The compiler is light, and generated code is efficient.",
"icon": "small"
},
{
"title": "Functional Paradigm",
"content": "Supports functional programming with features like comprehensions and implicit returns.",
"icon": "functional"
},
{
"title": "Increased Productivity",
"content": "Concise syntax and powerful features boost developer productivity for rapid iteration.",
"icon": "productive"
}
],
"tags": [
"execution_mode/interpreted",
"paradigm/imperative",
Expand Down