! SheerPower 4GL: Fibonacci sequence
! Compute and display the first 15 Fibonacci numbers

declare long a, b, temp, i

a = 0
b = 1
print "Fibonacci sequence:"
print a
print b

for i = 3 to 15
  temp = a + b
  a = b
  b = temp
  print b
next i
