Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



#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 language
ote: 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

statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

Details



Discussion

Do you want to join discussion? Click here to log in or create user.