Kryptostack
|
There is a collecion of examples in the directory Examples
.
To run one of them them in the shell, use:
../Examples> ../kb Example.ks
Alle examples can be executed with:
make examples
An example procedure to compare array contents.
This is not a deep comparison; the contents of the arrays are compared with the build-in eq operator.
The enddict
procedure is equivalent to the >>
operator.
Demonstrates usage of the Extended Euclidean Algorithm, implemented as xgcd
.
Factorial demonstrates the implemented 128-Bit integer size.
The definition of the factorial
procedure is a fragment from the Green Book.
Factors.ks
demonstrates a procedure factors
,
that generates a list of all factors of an integer X > 0 and places the list on the stack.
A compact but inefficient recursive way to print the first 22 Fibonacci numbers.
(copied from Wikipedia). It also demonstrates a statistics snapshot at program end.
Hanoi.ks
demonstrates stack objects in a procedure hanoi
,
which solves the mathematical puzzle Tower of Hanoi recursively.