Mink
The scripting language for all
Mink is a fast, simple and modular scripting language built on top of Rust. While it was originally targeted as a language for game engines, it now lives as a general-purpose language for any project.
Simple
Mink's syntax is simple, clear and explicit. On the user-end, it allows for dynamic typing and fast prototyping.
Developer-friendly
On the developer-end, Mink focuses on providing a simple but powerful API. Mink is completely modular as a language, allowing developers to implement their own libraries with ease (even the standard library!).
Example: Greet
print("Hi, Diego!")
use *;
Example: Custom Library
// mathlib.rs
use *;
// main.rs
use *;