Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Julia Cookbook

You're reading from   Julia Cookbook Over 40 recipes to get you up and running with programming using Julia

Arrow left icon
Product type Paperback
Published in Sep 2016
Publisher
ISBN-13 9781785882012
Length 172 pages
Edition 1st Edition
Languages
Arrow right icon
Authors (2):
Arrow left icon
Raj R Jalem Raj R Jalem
Author Profile Icon Raj R Jalem
Raj R Jalem
Jalem Raj Rohit Jalem Raj Rohit
Author Profile Icon Jalem Raj Rohit
Jalem Raj Rohit
Arrow right icon
View More author details
Toc

Quoting

The usage of a semicolon to represent expressions is known as quoting. The characters inside the parentheses after the semicolon constitute anĀ Expression object.

How to do it...

To check this behavior, let's check for the type of a similar statement that has an object inside the parentheses after a semicolon. This can be done in the REPL as follows:

typeof(:((a + b) * c) / 6))

The preceding command gives the following output:

How to do it...

Multiple expressions can be represented as a block by quoting them. The syntax would be as follows:

exp = quote
              some code
              some more code
              more code
              a little more
              ...
           end

An example with some code inside the code block would look like this:

How to do it...

Now, let's verify the type of the exp variable with theĀ typeof() function.

How to do it...

So, the the code block enclosed inside quote andĀ end is indeed an expression.

How it works...

Quoting is the concept of creating expression objects...

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 $19.99/month. Cancel anytime