#!/usr/bin/gbs3
Use "gb.eval.highlight","gb.pcre"
Public x As String = "hello"

INCLUDE "TestAppInclude"

Public Struct testStruct
Hp As String 
g As Integer
f As Variant
End Struct

Public Sub main()
dim cNew as new TestIt
print "Included Class Result ";cNew() 
For i As Integer = 0 To 20
Print x;;i
Next

End