Skip to Content
Learning Perl 6
book

Learning Perl 6

by brian d foy
September 2018
Beginner
474 pages
9h 35m
English
O'Reilly Media, Inc.
Content preview from Learning Perl 6

Chapter 5. Building Blocks

Blocks are the thingys that group multiple statements into a single thingy. You’ve already used some of them, based on the faith I asked you to have in the introduction. Now it’s time to look at those more closely. This chapter covers the basics and works up to simple subroutines. You’ll see just enough here to get you through the next couple of chapters, then quite a bit more in Chapter 11.

Blocks

A Block is a group of statements surrounded by braces. You’ve already used loop to repeat a group of statements. You also used the if-else structure, which used a Block in each branch and executed only one of them:

loop { ... }

if $n %% 2 { put "Even!" }
else       { put "Odd!"  }

A bare block is one that has nothing around it. It is in sink context because you do nothing with its result. It provides a scope and runs once immediately. The result is the last evaluated expression (not necessarily the last lexical expression) in the Block. Here’s a simple one that does nothing:

{ ; }
Note

There’s a bit of discouraged syntax that’s just {}. It constructs an empty hash (Chapter 9). With a statement separator inside the braces the compiler recognizes it as a Block.

Here, you can’t tell which expression your program will evaluate last until the Block knows what time it is. now is a term that gives the current time, which you can coerce to an Int:

{ now.Int %% 2 ?? 'Even' !! 'Odd' }

Sometimes you’ll get Even and sometimes you’ll get Odd. However, since you do nothing with the result, ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Think Perl 6

Think Perl 6

Laurent Rosenfeld, Allen B. Downey
Perl 6 Deep Dive

Perl 6 Deep Dive

Andrew Shitov
Perl by Example

Perl by Example

Ellie Quigley

Publisher Resources

ISBN: 9781491977675Errata Page