Planning on doing some blog posts about using BlitzMax in 2026 soon (letterboxing, web export, VS Code colours)!
So I thought it'd be fun to add MaxIDE's colours to the syntax highlighter I use on this site (Prism.js).
Related:
"
SuperStrict
Const blitzMaxIsAwesome:Int = True
Const year:Int = 2026
' The following two lines were actually in a
' BlitzMax tutorial I once read lol
Print "Hello sheep!"
Print "Hello cup of tea!"
If blitzMaxIsAwesome = True
Print "BlitzMax is awesome (even in " + year + ")!!!"
Else
Print "This won't fire dammit! :D"
End If
Function Test()
' This is a comment inside a function brah
End Function