BlitzMax is an open source programming language created in 2014.
| #554on PLDB | 12Years Old | 219Repos |
git clone https://github.com/blitz-research/blitzmaxBlitzMax
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()
?| Feature | Supported | Example | Token |
|---|---|---|---|
| Comments | ✓ | ||
| MultiLine Comments | ✓ | ||
| Line Comments | ✓ | ||
| Binary Literals | ✓ | ||
| Integers | ✓ | ||
| Floats | ✓ | ||
| Hexadecimals | ✓ | ||
| Pointers | ✓ |