#elixir
Elixir also supports string interpolation:
iex > string = :world iex > "hellö #{ string } " "hellö world"
If you want to change selection, open document below and click on "Move attachment"
Basic types - The Elixir programming languageote: if you are running on Windows, there is a chance your terminal does not use UTF-8 by default. You can change the encoding of your current session by running chcp 65001 before entering IEx. <span>Elixir also supports string interpolation: iex> string = :world iex> "hellö #{string}" "hellö world" Strings can have line breaks in them. You can introduce them using escape sequences: iex> "hello ...> world" "hello\nworld" iex> "hello\nworld" "hello\nworld" You can print a s Summary
status | not read | | reprioritisations | |
---|
last reprioritisation on | | | suggested re-reading day | |
---|
started reading on | | | finished reading on | |
---|
Details