Originally Posted by
TheGhost
ftfy
most modern (object-oriented) programming languages which are compiled do not care the order you define or call things
To a point this is true. For example:
Code:
Messagebox.show(rawr)
Dim rawr as string = "hi"
That won't work. You are referencing a value before it's defined.
Bookmarks