Created
November 27, 2012 07:44
-
-
Save tanakh/4152994 to your computer and use it in GitHub Desktop.
エクスポートモジュールの楽な追加 ref: http://qiita.com/items/dc8641a618b39e875ea1
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
| module Foo ( | |
| module Bar, | |
| module Baz, | |
| ... | |
| ) where | |
| import Bar | |
| import Baz | |
| ... |
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
| module Foo (module Exports) where | |
| import Bar as Exports | |
| import Baz as Exports | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment