Skip to content

Instantly share code, notes, and snippets.

@KamilaBorowska
Last active December 10, 2015 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KamilaBorowska/4353237 to your computer and use it in GitHub Desktop.
Save KamilaBorowska/4353237 to your computer and use it in GitHub Desktop.
Consider following code...
# Consider following code.
if %a<a>{.say}
{ my $variable = 42; }
# Does it mean this:
if (%a<a>) {
.say;
}
{
my $variable = 42;
}
# Or that
if (%a<a>{.say}) {
my $variable = 42;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment