Earlier quoted context omitted.
Could you please explain the Forth sample? For instance, which variable is the array?
Sure thing. : shuffle This starts a declaration for our word 'shuffle'. This implementation expects the address of the array on the stack with the length of the array on top. Some Forth programmers would leave a comment to this effect like so: ( addr len -- addr ) Anything in parentheses is a comment, and this shows the contents of the stack we want as input (read from right to left) before the '--' followed by the c…
[Thanks a lot by the way!]