jub0t / Pixie

Elegant 1MB Language Interpreter - Lightning-fast, Minimalistic, Extensible.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Interpreter

Info

  • Built-in functions are called Methods
  • Types: I32, String, F64, Bool

Example

let name = "John Doe"
print(name)

const name = "Jane Doe"
print(name)

const cool = true
const age = 18
print(age, cool)

echo("Newlines Work Too\n")

function my_func(t1: String, t2: I32){
    print(t1)
    print(t2)
}

my_func("Function Params Work", 100)

About

Elegant 1MB Language Interpreter - Lightning-fast, Minimalistic, Extensible.

License:MIT License


Languages

Language:Rust 100.0%