12 lines
182 B
Text
12 lines
182 B
Text
' FB 1.05.0 Win 64
|
|
|
|
' main.bas file
|
|
#include "person.bi"
|
|
|
|
Dim person1 As Person
|
|
person1.name = "Methuselah"
|
|
person1.age = 969
|
|
Print person1
|
|
Print
|
|
Print "Press any key to quit"
|
|
Sleep
|