Simple way to start learning types
Simple way to start learning types
API Declarations
Public Type Car
model as string
max_speed as integer
speed as integer
color as string
end type
Rate Simple way to start learning types
(1(1 Vote))
dim mdr as Car
Private Sub Command1_Click()
mdr.max_speed=200
print mdr.max_speed
End Sub
Simple way to start learning types Comments
No comments yet — be the first to post one!
Post a Comment