</>
Tutorials

Elixir Tutorial

  • Elixir - Useful Resources
    The following resources contain additional information on Elixir. Please use them to get more in-depth knowledge on this topic.
  • Elixir - Libraries
    Elixir provides excellent interoperability with Erlang libraries. Let us discuss a few libraries in brief.
  • Elixir - Comprehensions
    List comprehensions are syntactic sugar for looping through enumerables in Elixir. In this chapter we will use comprehensions for iteration and generation.
  • Elixir - Processes
    In Elixir, all code runs inside processes. Processes are isolated from each other, run concurrent to one another and communicate via message passing. Elixir’s processes should not be confused with operating system processes. Processes in Elixir are extremely lightweight in terms of memory and CPU
  • Elixir - File IO
    File IO is an integral part of any programming language as it allows the language to interact with the files on the file system. In this chapter, we will discuss two modules ? Path and File.
  • Elixir - Functions
    A function is a set of statements organized together to perform a specific task. Functions in programming work mostly like function in Math. You give functions some input, they generate output based on the input provided.
Page 1 / 8Next