Arc Forumnew | comments | leaders | submitlogin
2 points by applepie 5799 days ago | link | parent

Python's modules are first class. For example:

  import module

  x = module
  x.function(...)
In Haskell, names are resolved during compile-time...

Also, in Haskell modules can define which names to export. In Python everything is visible.