Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 611 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 611 Bytes

Embedded languages

A list of scripting languages that can be embedded in a rust application

Scripting languages

Lua

The OG embeddable language. Implemented here with mlua with the luau or roblox lua syntax.

Javascript

Three implementations:

  • Deno, which uses v8 under the hood
  • quickjs, which uses its own engine.
  • boa, which uses its own engine written in Rust.
  • rusty_jsc which uses the javascriptcore engine

Python

Not exactly python but close, Starlark

Embeddable en extensible scripting language made in Rust