1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 03:30:23 +00:00
QB64-PE/tests/qbasic_testcases/misc/frac2.bas
Matthew Kilgore 9ee89d6ff4 Add QBasic tests
These tests use a variety of sample code (with some of the larger files
removed, so they are not complete!) and verifies that they all compile
successfully.
2022-04-28 23:00:07 -04:00

20 lines
269 B
QBasic

CLS
SCREEN 8
s1 = 225
f1 = 1.4
s2 = 225
f2 = .35
x = .4
y = .1
FOR i = 1 TO 2000
x1 = y + 1 - 1.4 * x * x
y = .3 * x
IF s1 * (x1 + f1) < 640 AND x1 + f1 > 0 THEN
IF s2 * (y + f2) < 350 AND y + f2 > 0 THEN
PSET (s1 * (x1 + f1), s2 * (y + f2))
END IF
END IF
x = x1
NEXT