Clover

crates.io CI Crates.io

a scripting language created in Rust

still in development~

Features

Example

```ruby include Vector2D as Vector from "./vector"

public model Rect start size end

implement Rect function new() local rect = Rect() rect.start = Vector.new() rect.size = Vector.new() rect end end

model MyRect end

copy all function in Rect to MyRect

apply Rect to MyRect

function main() local rect = MyRect.new() rect end ```

Integrate to your project

```rust let result = createstateby_filename("example/main.luck");

match result { Ok(mut state) => { state.execute(); } } ```