1.11 Namespaces

Three types of namespaces.

  1. >built-in: Are readily available functions without any import. They can be used anywhere inside a program.
  2. >global: Are which user defines outside of any function/class. They can be used anywhere inside a program.
  3. >local: Are which user defines inside a function/class. They cannot be used outside their class/function's scope.