For more details, type "HELP" or see the Sunflower BASIC Manual.

Updated 3 hours ago
Published 1 day ago
StatusReleased
CategoryTool
PlatformsHTML5
Rating
Rated 4.7 out of 5 stars
(3 total ratings)
AuthorRek & Devine
Tagsbasic, Commodore 64, programming

Download

Download NowName your own price

Click download now to get access to the following files:

basic.rom 6 kB
Version 15
bundle.zip 61 kB

Comments

Log in with itch.io to leave a comment.

(2 edits)
1 REM To roll size sided dice
2 PRINT "You rolled " R%6+1 "."
3 END

How about a game of TicTacToe?

Can't copy/paste on MacOS...

Command + V just writes "v".

Oh! lemme fix that for ya :)

Nice!

1 REM Give the sunflower a frown
2 DRAW 48,48
3 SPRITE $0000, $4200, $003c, $4200
4 END
1 LET I=0
2 IF I%15=0 GOTO 10
3 IF I%5=0 GOTO 11
4 IF I%3=0 GOTO 13
5 PRINT I
6 LET I=I+1
7 IF I<100 GOTO 2
8 END
10 PRINT "FIZZ";
11 PRINT "BUZZ"
12 GOTO 6
13 PRINT "FIZZ"
14 GOTO 6