KITE Programming Language Help For Students

Introduction to KITE Programming Language

Kite is a computer programming language that released in late 2006. Its goals are to be fast and small, both in development time and actual running time. It does this by combining both object oriented and functional paradigms in the language syntax. Kite is a programming language designed to minimize as much of the programmer experience as possible — quick development and running time and low CPU and memory usage.

Example: Hello World!

{`
#!/usr/local/bin/kite
"Hello World"|print;
`}

Features

Logic

{`

decide [

condition1 [ ... ],

condition2 [ ... ],

true       [ ... ]

];

`}

Loop

{`
i = 0;
while (i < 10) [
i = i + 1;
];
until (i == 0) [
i = i - 1;
];
`}

KITE Programming Language