Advertisement
Guest User

Untitled

a guest
Apr 6th, 2019
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. fib := [ :i |
  2.     (i <= 2) ifTrue:  [ 1   ]
  3.     ifFalse: [
  4.         (fib value:(i-1)) + (fib value:(i-2)).
  5.         ].
  6.     ].
  7.  
  8. z := fib value: 16.
  9.  
  10. Transcript show: z.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement