Skip to content

Instantly share code, notes, and snippets.

@tanakh
Created November 27, 2012 07:44
Show Gist options
  • Select an option

  • Save tanakh/4152994 to your computer and use it in GitHub Desktop.

Select an option

Save tanakh/4152994 to your computer and use it in GitHub Desktop.
エクスポートモジュールの楽な追加 ref: http://qiita.com/items/dc8641a618b39e875ea1
module Foo (
module Bar,
module Baz,
...
) where
import Bar
import Baz
...
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