Elixir Tutorial
- Elixir - Useful ResourcesThe following resources contain additional information on Elixir. Please use them to get more in-depth knowledge on this topic.
- Elixir - LibrariesElixir provides excellent interoperability with Erlang libraries. Let us discuss a few libraries in brief.
- Elixir - ComprehensionsList comprehensions are syntactic sugar for looping through enumerables in Elixir. In this chapter we will use comprehensions for iteration and generation.
- Elixir - ProcessesIn 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 IOFile 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 - FunctionsA 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