gitjeff2

Results 11 issues of gitjeff2

In *ncitest.raku* a constant is defined like this: ```raku constant LIBPATH = "$*CWD/ncitest"; ``` That's entirely valid. However, it really is worth noting to the reader that in Raku, [unlike...

I notice the Raku Guide has a section on [functional programming](https://raku.guide/#_functional_programming) but makes no mention of recursion. In functional programming recursion is favored over loops. So, this strikes me as...

As time permits please add support for 'illegal opcodes.' An excellent reference exists at [NMOS 6510 Unintended Opcodes: No More Secrets](http://csdb.dk/getinternalfile.php/135165/NoMoreSecrets-NMOS6510UnintendedOpcodes-20142412.pdf). The 6510 on the C64 had these op-codes but...

Please add [AsciiDoc](https://en.wikipedia.org/wiki/AsciiDoc) support to the syntax highlighter. As a handy reference, here is an example of [Vim syntax highlighting file](https://github.com/asciidoc/vim-asciidoc/blob/master/syntax/asciidoc.vim) with the required regular expressions to make this happen.

feature request
junior-friendly
Code

Since this is one of the more active projects on GitHub written in Forth, I think I should post this here. The language learning / challenge site is looking to...

[GNU Unifont](https://en.wikipedia.org/wiki/GNU_Unifont) has a decent subset of Unicode defined in 8×8, 16×8, or 16x16 bitmaps in a format that could easily be burned to ROM. This should make efficient display...

Neat project. I ran across it while trying to wrap my head around Docker images on Gentoo. I see that this project has its own portage overlay. Also, when I...

In addition to the [native C128 port](#53), support for the [Mega 65](https://mega65.org/) and the [Commander X16](https://github.com/commanderx16) would be positively amazing. The former is basically a beefy [Commodore C65](https://www.c64-wiki.com/wiki/C65) while the...

enhancement
help wanted

If I attempt to install multiple packages as follows: ``` C:\> appget install putty winscp 7zip ``` Only the first package is installed. Additional packages after the first are ignored....

enhancement
discussion

Unless I missed something, constants aren't covered at all in the course. Constants are worthy of mention, most likely in the *Variables and Data Types Essentials* section. It should be...