A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Baklava in Commodore Basic page! Here, you'll find the source code for this program as well as a description of how the program works.
10 FOR I = -10 TO 10
20 NSP% = ABS(I)
30 SP$ = ""
40 IF NSP% = 0 GOTO 80
50 FOR J = 1 TO NSP%
60 SP$ = SP$ + " "
70 NEXT J
80 ST$ = ""
90 FOR J = 1 TO 21 - 2 * NSP%
100 ST$ = ST$ + "*"
110 NEXT J
120 PRINT SP$ + ST$
130 NEXT I
Baklava in Commodore Basic was written by:
If you see anything you'd like to change or update, please consider contributing.
No 'How to Implement the Solution' section available. Please consider contributing.
No 'How to Run the Solution' section available. Please consider contributing.