a toy language created in Rust
still in development~
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
CloverCli ./examples/main.luck