Skip to content

Instantly share code, notes, and snippets.

@Varriount
Created November 2, 2013 04:44
Show Gist options
  • Save Varriount/7275618 to your computer and use it in GitHub Desktop.
Save Varriount/7275618 to your computer and use it in GitHub Desktop.
Comparison of imports in nimrod
import table # You can use anything declared public in the table module
from table import TTable # You can ONLY reference TTable, none of its methods
from table import TTable, len, [], mget, hasKey, []=, add, del, initTable, toTable, $, pairs, mpairs, keys, values, mvalues # Now we can use everything associated with TTable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment