forked from OpenSHAPA/openshapa
-
Notifications
You must be signed in to change notification settings - Fork 18
getVariableList
Jesse Lingeman edited this page Aug 27, 2013
·
1 revision
Returns a list of all the names of all of the variables in the database.
None.
variables = getVariableList()
# Print out the names of each of the variables
for var in variables
puts var
# Get this variable from the database
dbVar = getVariable(var)
# Now do something with it...
end