Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 816 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 816 Bytes
BlueScript logo

The BlueScript programming language

A general-purpose programming language that generates Lua code with a simple, convenient and powerful syntax.

Examples

issues status license

BlueScript claims to give the developer a comfortable, simple and effective programming language, with a modern and simple syntax.

BlueScript exists to improve script development with Lua.

The most basic example: "Hello World!"

fn main() {
    println("Hello World!");
}