Elixir Sigils | Table O Contents

Place the introducing line of text ie.) the ‘tagline’ here …

Note. The Flammarion Logo Badge in the page header above is an .svg image file set to the dimensions of 5% width, auto height, and zoom. Go ahead and test the zoom-out feature by hovering over the badge to engage the expansion of the image from your desktop.

First Subtitle

Hint. Place the intro paragraph ie.) the ‘hypothesis’ here …

More to come …

Jekyll Server

Note. Detailed instructions on how to view this file locally using a Jekyll server are included in the accompanying Gemfile for the project.

In short, type the following command statement from a Terminal window when set to the docs subdirectory.

jekyll serve --watch --baseurl "" -o

Last Subtitle

More to come …


Note. The above synopsis was derived from an article written by Blank Author [1].

  1. A Narrative of Psychology by Blank Author, Jan #1999

Support

Please support the co-workers who aggregate the Source Links for our projects.

Patreon

Like what you see in this project? If so, then support the authors and machine-elves who aggregate the source links and pages for our projects via Patreon.

##Sigils

Note. The Sigil ~w() statement in the Elixer programming language produces a set of key or seed words or strings, as follows:

iex> ~w(one two three)s

;where the switch of s suffixed to the rear or caboose of the Sigil-statement returns all values as strings, as follows:

Returns …

["one", "two", "three"] 

Or,

As atoms when evoking the a suffix to the Sigil-statement, as follows:

iex> ~w(one two three)a

Returns …

[:one, :two, :three] 

Note. Anonymous functions are created OUTSIDE of any module in Elixer.

Rule. Use dot notation to call an anonymous function, as follows:

```elixer iex> anon.(10)

Whereas, Named functions are created inside any module.