! Fibonacci sequence in BBj
a = 0
b = 1
PRINT "Fibonacci Sequence:"
FOR i = 1 TO 15
    c = a + b
    PRINT STR(a)
    a = b
    b = c
NEXT i
END
