Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Oh, awesome! I'll definitely take a look. :) Do you have a Discord server?

Ah not yet, everything is so primitive for the moment.

No problem! If you do make one, please let me know! I'm very very interested in this.

Another question: does GB BASIC support strings? :)

Of course.

It supports string partially, i.e. print "pi=%d", 22/7 and label #0 "hello", the string are constant literals, this is enough for text representation. As a constrained platform, gb is not very good at dynamic allocating, so it doesn’t support assigning string to variable, concating, etc.

Actually the runtime part is based on the GBVM project, their capability are quite similar.