All public logs

Jump to navigation Jump to search

Combined display of all available logs of Elixir Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 14:18, 3 December 2023 Elixirfan talk contribs created page PatternMatching (Created page with "== Pattern Matching == Pattern matching is a powerful feature of the Elixir programming language. It allows developers to match values and data structures against specific patterns, enabling concise and expressive code. === Syntax === Patterns in Elixir are written using the `<code>match</code>` keyword. The basic syntax for pattern matching is as follows: <code>match pattern do clause_1 -> expression_1 clause_2 -> expression_2 ... end</code> Patterns can matc...")