-
I just realized that so far we haven't added `return` into the parser yet... It's not totally clear cut to me how this should be done, so I wanted to write down a few thoughts/propose some ideas here.…
j-hui updated
3 years ago
-
Introduced through #67
Problem: implementing words without subwords is difficult
Technically speaking, loaded words can define their own
words but they will leak into the remainder of the prog…
-
Let `foo: a b -> x`, `bar: c d e -> y`. Then `foo ; bar` is the function of type `a b c d e -> x y`, such as `x = a b foo`, `y = c d e bar`.
Infix notation ``foo `F` bar`` can be defined as `(foo ;…
-
This looks fun and interesting!
How do you build it? (or interpret it?) SWIPL?
-
It would be nice to have some content on the wiki
-
Stumbling over RFWUGens via #136, I realised that 'AverageOutput' in that package is quite similar to the 'RMS' Ugen to be found in 'DEINDUgens'. I was wondering, if we should form some very basic UGe…
LFSaw updated
7 years ago
-
Wow, this is actually kind of an impressive language. Disclaimer: I'm a bit crazy into languages.
I read the TODO documenting mainly the development 3 months ago. It feels **Basil has lots of poten…
-
This is admittedly more of a North than Forth, but still thought some others might be interested in this project:
https://github.com/thi-ng/umbrella/tree/master/packages/pointfree
> Pointfree, f…
-
Not sure how doable this would be, but it'd be nice to have some way of converting a `fend` script to `bc` or `dc` syntax (chiefly for embedding within a portable shell-script designed to run on syste…
-
Rusts central idea is to disallow mutability and aliasing at the same time (a little bit simplified). I'd like to discuss if it'd be useful to infuse a similar concept into a dynamic language.
Why…