You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, a function body can only be a Rimu expression. But for a standard library, we need to be able to access things in Rust-land, such as the length of a list's vec.
TODO Checklist
Change Value's Function into an enum
Existing case is Function::Rimu
New case is Function::Rust, where the enum references a Rust function.
Create rimu-stdlib crate
Create length function
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered:
Describe the solution you'd like
A core standard library based on: https://clojuredocs.org/quickref
At the moment, a function body can only be a Rimu expression. But for a standard library, we need to be able to access things in Rust-land, such as the length of a list's vec.
TODO Checklist
Value
'sFunction
into an enumFunction::Rimu
Function::Rust
, where the enum references a Rust function.rimu-stdlib
cratelength
functionDescribe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: