Run this notebook

Use Livebook to open this notebook and explore new ideas.

It is easy to get started, on your machine or the cloud.

Click below to open and run it in your Livebook at .

(or change your Livebook location)

# Modules A `Module` is a wrapper for functions. If you come from Object-oriented Programming (OOP), they might look a lot like classes, but they are not. They merely help you to organize your code. Here's how you define a module: ```elixir defmodule RunElixir.Profile do # This is a 'Module Attribute'. It is a constant value that is set at compile time. # You cannot access it from outside the module. @legal_age 18 # But if you need to access the module attribute from outside the module, # it is common to write a small public function that returns it: def legal_age, do: @legal_age # This is a public function. You can call it from outside the module. def adult?(age) do if age_valid?(age) do age >= @legal_age else raise "Invalid age #{age}" end end # This is a private function. You can call it only from inside the module. defp age_valid?(age) do age >= 0 end end ``` You can call a module function like this: ```elixir RunElixir.Profile.adult?(18) # => true RunElixir.Profile.adult?(17) # => false RunElixir.Profile.adult?(-1) ``` <!-- livebook:{"output":true} --> ``` ** (RuntimeError) Invalid age -1 #cell:ephnppjvminxbiag:13: RunElixir.Profile.adult?/1 ``` ## `alias/2`, `import/2`, and `defdelegate/2` You can call the functions of a module from another module in a few ways: ```elixir defmodule RunElixir.Checker do # Either you call the module using its full namespace: def check_age(profile) do RunElixir.Profile.adult?(profile.age) end # Or, you alias its name: alias RunElixir.Profile # <- This and import usually go to the top of the module. def check_age_aliased(profile) do Profile.adult?(profile.age) end # Or, you import specific or all functions: import RunElixir.Profile, only: [adult?: 1] # Remove the 'only: ...' to import all functions def check_age_imported(profile) do adult?(profile.age) end # You can also delegate a function call to another module # You can't change the arguments, but you can change the function name. defdelegate check_adult?(age), to: RunElixir.Profile, as: :adult? end RunElixir.Checker.check_age(%{age: 18}) # => true RunElixir.Checker.check_age_aliased(%{age: 18}) # => true RunElixir.Checker.check_age_imported(%{age: 18}) # => true RunElixir.Checker.check_adult?(18) # => true ```
See source

Have you already installed Livebook?

If you already installed Livebook, you can configure the default Livebook location where you want to open notebooks.
Livebook up Checking status We can't reach this Livebook (but we saved your preference anyway)
Run notebook

Not yet? Install Livebook in just a minute

Livebook is open source, free, and ready to run anywhere.

Run on your machine

with Livebook Desktop

Run in the cloud

on select platforms

To run on Linux, Docker, embedded devices, or Elixir’s Mix, check our README.

PLATINUM SPONSORS
SPONSORS
Code navigation with go to definition of modules and functions Read More ×