Elixir v1.6.5 Kernel View Source This module is the entry point of the Elixir programming language. It provides the default functions and macros Elixir imports into your environment. Those can be directly invoked in your code without the module name: iex> is_number(13) true These functions and macros can be skipped or cherry-picked via the Kernel.SpecialForms.import/2 macro. For instance, if you w