08-14-2025, 10:17 PM
So using what I figured here months later, I came up with this for a tree
I guess I'll have to get on you other fine folk's level to be able to turn my tree into a Christmas tree though. That could very well never happen though.
Code: (Select All)
DIM spaces%
DIM n%
spaces% = 20
n% = 1
PRINT
PRINT
FOR count% = 1 TO 20
PRINT STRING$(spaces%, " ");
PRINT STRING$(n%, "*")
spaces% = spaces% - 1
n% = n% + 2
NEXT
spaces% = 18
FOR count% = 1 TO 2
PRINT STRING$(spaces%, " ");
PRINT STRING$(4, "|")
NEXT
