Skip to content

Commit

Permalink
Add Dutch Fibonacci example code.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabordemooij committed Mar 3, 2018
1 parent bd69ce1 commit a8ba462
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions examples/fibnl.ctr
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
☞ f := Lijst ← 0 ; 1.

0 tot: 12 stap: 1 doen: {

#neem laatste element van f
☞ a := f laatste.

#neem het element ervoor
☞ b := f een-na-laatste.

#schrijf het op
✎ schrijf:
'de som van ' + a + 'en ' + b.

#bereken de som
☞ som := (a + b).
✎ schrijf:
' is ❲ som ❳ '.

# voeg de som toe aan de lijst
f erbij: som.
}.

0 comments on commit a8ba462

Please sign in to comment.