Block a user
Functions should properly close over bindings
Partial function application should work.
Bring Prelude into Rust
Currently getting unbound name base
when running functions that rely on base
(which is to say, just about every function in Prelude). But apparently at least some of this is working...?
Panics should have nice information
Canvas the Janet codebase to see where panics happen, and make sure we have at-least-as-good error messages in every situation.
String pattern matching
Done! So much fighting with lifetimes, ownership, &'static str
vs. String
. But we got there! In 6ba05f31e6
.
Complete base functions
Done in 13c14fd38f
. Some of these aren't necessary, some I'm not ready for yet (disj
only exists for sets, and we don't…