Scott Richmond scott
  • Joined on 2023-07-29
scott opened issue scott/rudus#16 2024-12-09 23:04:16 +00:00
Functions should properly close over bindings
scott opened issue scott/rudus#15 2024-12-09 22:58:48 +00:00
Partial function application should work.
scott commented on issue scott/rudus#13 2024-12-09 04:37:11 +00:00
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...?

scott closed issue scott/rudus#9 2024-12-09 04:35:21 +00:00
More ergonomic context
scott commented on issue scott/rudus#9 2024-12-09 04:35:20 +00:00
More ergonomic context

Done in 383f21fbd8.

scott closed issue scott/rudus#12 2024-12-09 04:35:11 +00:00
Move base from a context to a dict
scott commented on issue scott/rudus#12 2024-12-09 04:35:07 +00:00
Move base from a context to a dict

Done in 383f21fbd8

scott pushed to main at scott/rudus 2024-12-09 04:34:11 +00:00
9a4f247a21 bring in prelude
f063d55404 actually commit the big new file
Compare 2 commits »
scott pushed to main at scott/rudus 2024-12-09 04:33:07 +00:00
383f21fbd8 many refactorings; unfucked lifetimes?
scott commented on issue scott/rudus#6 2024-12-08 06:42:45 +00:00
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.

scott opened issue scott/rudus#14 2024-12-08 06:41:36 +00:00
Rust-based doc generation
scott opened issue scott/rudus#13 2024-12-08 06:39:43 +00:00
Bring Prelude into Rust
scott opened issue scott/rudus#12 2024-12-08 05:16:20 +00:00
Move base from a context to a dict
scott pushed to main at scott/rudus 2024-12-08 05:02:05 +00:00
525ca2c8cb type alias for Context
scott commented on issue scott/rudus#10 2024-12-08 04:58:07 +00:00
String pattern matching

Done! So much fighting with lifetimes, ownership, &'static str vs. String. But we got there! In 6ba05f31e6.

scott closed issue scott/rudus#10 2024-12-08 04:58:07 +00:00
String pattern matching
scott pushed to main at scott/rudus 2024-12-08 04:56:24 +00:00
6ba05f31e6 finish fighting with lifetimes: string pattern matching works!
5a64c6623c fighting with lifetimes
2a26316b50 parse string patterns, perhaps correctly, perhaps not
Compare 3 commits »
scott commented on issue scott/rudus#2 2024-12-06 19:12:56 +00:00
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…

scott closed issue scott/rudus#2 2024-12-06 19:12:56 +00:00
Complete base functions
scott pushed to main at scott/rudus 2024-12-06 19:08:38 +00:00
13c14fd38f finish base, I think