Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 941 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 941 Bytes

Examples

Gathers a collection of example Riddim programs, feel free to reuse them

Programs

If you are here for a Hello world :

print 'Hello, world !'

Programs are ordered by difficulty, the first program is the easiest.

  1. IO : Learn how to use print / input / scan functions
  2. Fibonacci : Simple fibonacci function
  3. Collections : Learn which default collections / data structures and methods are available
  4. Primes : Displays a list of prime numbers
  5. Documentation : Learn how to document your code and generate documentation pages using autodoc
  6. Trees : Implement a binary tree type with breadth first traversal algorithm
  7. Files : Learn to read / write files
  8. Average Word Length : Given a text, compute the average word length. Functional methods provided by the standard library are used.