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.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

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 Best Practices

Perl Best Practices

Damian Conway
Perl by Example

Perl by Example

Ellie Quigley

Publisher Resources

ISBN: 9781491977675Errata Page