Kryptostack
EXAMPLES

Introduction

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

List

ArrayEqual.ks

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.

EndDictOperator.ks

The enddict procedure is equivalent to the >> operator.

ExtendedEuclidean.ks

Demonstrates usage of the Extended Euclidean Algorithm, implemented as xgcd.

Factorial.ks

Factorial demonstrates the implemented 128-Bit integer size.
The definition of the factorial procedure is a fragment from the Green Book.

Factors.ks

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.

Fibonacci.ks

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

Hanoi.ks demonstrates stack objects in a procedure hanoi,
which solves the mathematical puzzle Tower of Hanoi recursively.