I program my home computer. Beam myself into the future.

10 n = 1
20 limit = 15
30 goto 50
40 n = n + 1
50 if mod(n, 3) = 0 print "FIZZ";
60 if mod(n, 5) = 0 print "BUZZ";
70 if mod(n, 3) = 0 or mod(n, 5) = 0 print
80 if n < limit goto 40
90 end