We can put scalar variables within regular strings. Their value will be interpolated into the string.
examples/scalars/hello_world_variable_interpolation.p6#!/usr/bin/env perl6 use v6; my $name = "Foo"; my $greeting = "Hello $name"; say $greeting;
prints
Hello Foo