Merge pull request #1331 from GWRon/master

Fixed support for "BlitzMax"
This commit is contained in:
Arfon Smith
2014-07-01 15:56:43 -05:00
3 changed files with 26669 additions and 26611 deletions

View File

@@ -222,6 +222,8 @@ BlitzBasic:
- .decls
BlitzMax:
type: programming
color: "#cd6400"
extensions:
- .bmx

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,25 @@
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()
?