mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
a1ed92df28
* Added VB6 Support https://en.wikipedia.org/wiki/Visual_Basic * Added tests and removed frx Removed frx: .frx is a compainon binary file to .frm (vb6 forms). It contains binary artifacts like images, but its format is proprietary.
23 lines
531 B
OpenEdge ABL
23 lines
531 B
OpenEdge ABL
' 22 lines 17 code 3 comments 2 blanks
|
|
VERSION 1.0 CLASS
|
|
BEGIN
|
|
MultiUse = -1 'True
|
|
Persistable = 0 'NotPersistable
|
|
DataBindingBehavior = 0 'vbNone
|
|
DataSourceBehavior = 0 'vbNone
|
|
MTSTransactionMode = 0 'NotAnMTSObject
|
|
END
|
|
Attribute VB_Name = "Class1"
|
|
Attribute VB_GlobalNameSpace = False
|
|
Attribute VB_Creatable = True
|
|
Attribute VB_PredeclaredId = False
|
|
Attribute VB_Exposed = False
|
|
'This is a comment
|
|
Private Sub Class_Initialize()
|
|
|
|
'This is another comment
|
|
Dim test As String
|
|
test = "TESTING"
|
|
|
|
End Sub
|