|
|
|
|
|
by substation13
1146 days ago
|
|
Hello! This looks really interesting to me. There is a feature I would like that I have never seen in a scripting language, and I wonder if Scrap might support it: > Monadic bind points and applicative join points in the script language Hopefully an example can convey what I mean. Bind: do {
let! x = some_value_in_a_monad
x + 1
}
Applicative: do {
let! x = some_value_in_a_monad
and! y = another_value_in_a_monad
(x + y) * y
}
Now when I embed this script, I would like my runtime interpreter to provide implementations of `let!` and `and!`. The script author defines the bind points and the runtime defines the effects.Is this possible in Scrap? |
|