BlitzMax is an open source programming language created in 2014.
git clone https://github.com/blitz-research/blitzmax
#641on PLDB | 9Years Old | 219Repos |
BlitzMax
SuperStrict
Framework Brl.StandardIO
Type TMyType
Field property:int
Function A:int(param:int)
'do nothing
End Function
Method B:int(param:int)
'do nothing
End Method
End Type
Global my:TMyType = new TMyType
?Win32
my.A()
my.B()
?Linux
my.B()
my.A()
?