EkBass
Silver Coder
I started from scratch and did this with FreeBasic. But even that has its problems now.
It has not been developed for a couple of years and at least on the Win 11 platform the graphical side was painfully slow again.
So .NET10 and C# then finally.
Unlike many programming languages, BazzBasic does not aim to be the most powerful or versatile tool.
It is also not a clone or a remake of any previous BASIC programming language.
It is intended to be easy, fun, and provide those small but significant moments of success that early BASIC programming languages offered decades ago.
But with a slightly more modern twist.
Today I got v.0.6 released and I thought it is time to show it here too.
Homepage: BazzBasic
Source: GitHub - EkBass/BazzBasic: BASIC Interpreter for .NET10
Manual: BazzBasic Manual
Code:
' FizzBuzz
' BazzBasic version. [email protected]
' https://github.com/EkBass/BazzBasic
FOR i$ = 1 TO 100
IF i$ % 15 = 0 THEN
PRINT "FizzBuzz"
ELSEIF i$ % 3 = 0 THEN
PRINT "Fizz"
ELSEIF i$ % 5 = 0 THEN
PRINT "Buzz"
ELSE
PRINT i$
END IF
NEXT