I want to provide a way to use keywords in functions when embedding steel in Rust. Something like:
fn foo(fst: Keyword<String>, snd: Keyword<String>) {
print!("{} {}", fst,snd);
}
And then in Steel:
(foo #:fst "bar" #:snd "baz")
Is this possible to do at the current stage of the project? Thank you
I want to provide a way to use keywords in functions when embedding steel in Rust. Something like:
And then in Steel:
Is this possible to do at the current stage of the project? Thank you