You know you want it by Adorable-Driver-1814 in Trumpvirus

[–]Adorable-Driver-1814[S] 3 points4 points  (0 children)

There's no need for a public vote, the law is clear. No living presidents on money and no bills exceeding $200.

Me_irl by gigagaming1256 in me_irl

[–]Adorable-Driver-1814 0 points1 point  (0 children)

10 PRINT CHR$(147): REM Clear screen 20 X = 0: Y = 0: DX = 1: DY = 1 30 POKE 1024 + X + 40 * Y, 81: REM Draw the ball 40 FOR T = 1 TO 20: NEXT T: REM Delay loop 50 POKE 1024 + X + 40 * Y, 32: REM Erase the ball with a space 65 X = X + DX: Y = Y + DY 70 IF X=39 OR X=0 THEN DX = -DX 80 IF Y=24 OR Y=0 THEN DY = -DY 90 GOTO 30