a scripting language created in Rust
still in development~
You can go to examples directory for more examples
ruby
function main()
print("hello world!")
end
rectangle.luck ```ruby public model Rectangle width height end
implement Rectangle function area(this) this.width * this.height end end ```
main.luck ```ruby include Rectangle from "./rectangle.luck"
function main() local rect = Rectangle(20, 30) print(rect.area()) end ```
Use Clover VSCode Support for code highlighting in Visual Studio Code
```rust let result = createstateby_filename("example/main.luck");
match result { Ok(mut state) => { state.execute(); } } ```
see clover-std
use Cargo to install the clover-cli
shell
cargo install clover-cli
shell
clover examples/main.luck