From: Jean Privat Date: Fri, 18 Feb 2011 15:48:31 +0000 (-0500) Subject: doc: add README X-Git-Tag: v0.4~4 X-Git-Url: http://nitlanguage.org doc: add README Signed-off-by: Jean Privat --- diff --git a/examples/README b/examples/README new file mode 100644 index 0000000..c7c58cb --- /dev/null +++ b/examples/README @@ -0,0 +1,8 @@ +* hello_world.nit: the standard "hello word" program. +* print_arguments.nit: just repeat the arguments of the program. +* fibonacci.nit: refine Int, the class of all integers, to add a Fibonacci function. +* procedural_array.nit: simple use of arrays without defining new classes. +* clock.nit: a simple class to track time on a wall clock. +* clock_more.nit: refine clock to add comparability between clocks. +* circular_list.nit: simple use of generic classes and nullable types to implement a double-linked circular list. +