Merge pull request #88 from gam-phon/patch-1

Added dir() function
This commit is contained in:
lodin 2013-07-02 17:39:42 -07:00
commit a062eed7d7

View File

@ -461,6 +461,11 @@ math.sqrt(16) == m.sqrt(16) #=> True
# can write your own, and import them. The name of the
# module is the same as the name of the file.
# You can find out which functions and attributes
# defines a module.
import math
dir(math)
```