John Earnest

Results 4 issues of John Earnest

Your readme lists `0x00BN` as an SCHIP instruction which scrolls the screen up by N pixels. To the best of my knowledge SCHIP does not provide this instruction. It's a...

Kona handles the "Dot Index" aka. "Apply" of a nilad to the empty list by evaluating the nilad: ``` {42}.() 42 ``` This appears to disagree with the description of...

exploratory

The [POSIX spec](https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap05.html#tag_05) permits using `%i` as an alternative to `%d`. This is supported by most awk implementations: ``` % awk 'BEGIN{printf("%i\n",42)}' 42 % mawk 'BEGIN{printf("%i\n",42)}' 42 % gawk 'BEGIN{printf("%i\n",42)}'...

The POSIX spec for Awk states: > `srand([expr])`: > Set the seed value for rand to expr or use the time of day if expr is omitted. The previous seed...