USING: kernel locals math ; IN: myclos : fibo ( -- quot ) [let 0 :> a! 1 :> b! [ b dup a + b! a! b ] ] ;