Gathers a collection of example Riddim programs, feel free to reuse them
If you are here for a Hello world :
print 'Hello, world !'
Programs are ordered by difficulty, the first program is the easiest.
- IO : Learn how to use print / input / scan functions
- Fibonacci : Simple fibonacci function
- Collections : Learn which default collections / data structures and methods are available
- Primes : Displays a list of prime numbers
- Documentation : Learn how to document your code and generate documentation pages using autodoc
- Trees : Implement a binary tree type with breadth first traversal algorithm
- Files : Learn to read / write files
- Average Word Length : Given a text, compute the average word length. Functional methods provided by the standard library are used.