Created
November 2, 2013 04:44
-
-
Save Varriount/7275618 to your computer and use it in GitHub Desktop.
Comparison of imports in nimrod
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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