mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
- language was already defined but missed "type: programming", so detection of "BlitzMax"-files did not work. Fixed that. - added "BlitzMax"-example to samples (and recreated samples.json)
25 lines
270 B
Plaintext
25 lines
270 B
Plaintext
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()
|
|
? |