Define a data table
Syntax: Table tableName As dataType
|
tableName |
Required. A name for the table |
|
data Type |
Required. A data type for the table. |
Example:
Table test As Single
Data 12.2, -15.4, 887.234
End
Table