luaur-vm 0.1.0

The Luau register virtual machine and standard library (Rust).
Documentation
1
2
3
4
#[inline]
pub fn perlin_lerp(t: f32, a: f32, b: f32) -> f32 {
    a + t * (b - a)
}