Linked list type.
Prelude::List< a >
= nil()
| cons(a head,Prelude::List<a> tail)
nil creates an empty list, cons creates a non empty list. Linked lists may be iterated over using a for loop.
list = cons(2,cons(5,cons(3,nil)));
Kaya standard library by Edwin Brady, Chris Morris and others ([email protected]). For further information see http://kayalang.org/
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation.
Prelude.array (3kaya)
Prelude.reverse (3kaya)