James · @LostGuppy
95 followers · 534 posts · Server sfba.social

Finally got around to imaging some very old SCSI hard drives from my gs which contains some of my very early programming work. Figured I'd upload it to for posterity. This is called Swamp Land written in and was inspired by text character animation based games like TextTrain. I wrote it over a weekend back around 1980 and was the first thing I was really proud of.

github.com/plaidpants/Swamp-La

#emulation #retrogaming #throwbackthursday #apple2 #github #videogame #applesoft #basic #beaglebros

Last updated 1 year ago

Kay Savetz · @savetz
691 followers · 54 posts · Server oldbytes.space

"A program in to draw a happy face" — again, no bugs, but no face

10 PRINT "O"
20 PRINT "|"
30 PRINT "o"
40 PRINT "|"
50 PRINT "-"
60 PRINT "/ \\"
70 PRINT
80 END

#applesoft #basic

Last updated 2 years ago

Kay Savetz · @savetz
691 followers · 53 posts · Server oldbytes.space

Is any better at ? "A program in AppleSoft BASIC to draw a maze" gave me code with no error!. But also not a very good maze

10 PRINT CHR$(147)
20 REM Draw the maze walls
30 FOR X=1 TO 40
40 FOR Y=1 TO 25
50 IF X=1 OR X=40 OR Y=1 OR Y=25 THEN PRINT CHR$(35);: GOTO 70
60 IF X MOD 2=0 AND Y MOD 2=0 THEN PRINT CHR$(35);: GOTO 70
70 NEXT Y
80 PRINT
90 NEXT X
100 PRINT CHR$(147)
110 END

#openai #applesoft #basic

Last updated 2 years ago