Modules in Elixir: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

28 May 2024

3 December 2023

  • curprev 14:3414:34, 3 December 2023Elixirfan talk contribs 3,149 bytes +3,149 Created page with "== Modules in Elixir == thumb|right|150px|Elixir logo In Elixir programming language, a module is a container for functions, data structures, and other definitions. Modules provide a way to organize code and create reusable components. They are fundamental building blocks for creating powerful and maintainable applications in Elixir. === Defining Modules === A module can be defined using the `defmodule` keyword followed by the module name. It i..."