Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Elixir Cookbook

You're reading from   Elixir Cookbook Unleash the full power of programming in Elixir with over 60 incredibly effective recipes

Arrow left icon
Product type Paperback
Published in Feb 2015
Publisher Packt
ISBN-13 9781784397517
Length 236 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Paulo Pereira Paulo Pereira
Author Profile Icon Paulo Pereira
Paulo Pereira
Arrow right icon
View More author details
Toc

Table of Contents (16) Chapters Close

Elixir Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Command Line FREE CHAPTER 2. Data Types and Structures 3. Strings and Binaries 4. Modules and Functions 5. Processes and Nodes 6. OTP – Open Telecom Platform 7. Cowboy and Phoenix 8. Interactions Installation and Further Reading Index

Using a module in the scripted mode


It is possible to use Elixir as if it were an interpreted language. Code is evaluated at the source level, eliminating the need to compile it before use. One of the examples of the usage of Elixir in the scripted mode is the test suite inside a Mix project. There, under the tests directory, you will find files with the .exs extension.

The convention in Elixir is to use the .ex extension in files that should be compiled and the .exs extension in files that should be interpreted.

How to do it…

To use the Elixir code without compiling it, follow these steps:

  1. Create a file named my_script.exs and add the following code:

    %{:date => d, :version => v} = System.build_info
    IO.puts """
    Command line arguments passed: #{inspect(System.argv)}
    Elixir version: #{v} (#{d})
    """
  2. Run the code in your terminal window:

    > elixir my_script.exs --demo –T –v
    Command line arguments passed: ["--demo", "–T", "-v"]
    Elixir version: 1.0.0 (Wed, 10 Sep 2014 17:30:06 GMT)
    

How it works...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at £13.99/month. Cancel anytime
Visually different images