LeoMehraban
LeoMehraban
Hello I've been trying out different methods to install TABS mods on Mac, and none of them have worked. However, there is a branch called "macOS-support", witch makes this seem...
In this pull request, I've added the following syntax words: `&[ ... | ... ]` : allows for bi, tri and cleave to be written in a much nicer way....
What this does is mostly in the title, but to further explain myself, this is a large improvement in space usage and readability: before the change: after the change:
When written in the UI Listener: `IN: scratchpad USING: calendar threads ;` `IN: scratchpad 1 seconds sleep ! as expected, waits a second and then finishes` `IN: scratchpad [ 1...
Previously, ```factor IN: scratchpad ENUMERATION: test a b ; IN: scratchpad \ test.a see ``` would produce ```factor IN: scratchpad CONSTANT: test.a 0 inline ``` which is not how `test.a`...
The creation of `(bounds-check?)` fixes a minor problem with the implementation of certain virtual sequences (notably `circular`), and increases the flexibility of the sequence protocol. Here's an example of where...
I'd expect the code ```factor IN: scratchpad { } "a" suffix! ``` to throw an `immutable` error. Instead, it throws a sequence out of bounds error: ```factor T{ bounds-error {...