How would I create a global table?

How would I create a global table to hold in global variables?

Any table not created as local should be global.

Just define a variable without local. e.g. in main setup.
myTable = {}
or local for the current scope (function) local myTable = {}
or in a class self.myTable = {}