Merge: doc: fixed some typos and other misc. corrections
[nit.git] / examples / README.md
1 * hello_world.nit: the standard "hello word" program.
2 * print_arguments.nit: just repeat the arguments of the program.
3 * fibonacci.nit: refine Int, the class of all integers, to add a Fibonacci function.
4 * procedural_array.nit: simple use of arrays without defining new classes.
5 * clock.nit: a simple class to track time on a wall clock.
6 * int_stack.nit: simple class for a stack of integers implemented with a linked list.
7 * clock_more.nit: refine clock to add comparability between clocks.
8 * circular_list.nit: simple use of generic classes and nullable types to implement a double-linked circular list.
9 * extern_methods.nit: basic use of extern methods, Nit methods implemented in C code
10 * callback_monkey.nit|callback_chimpanze.nit: simple example of callback using through FFI.