Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created September 5, 2016 22:04
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 zoffixznet/0d1cc5690270a6358335edd2b3d67431 to your computer and use it in GitHub Desktop.
Save zoffixznet/0d1cc5690270a6358335edd2b3d67431 to your computer and use it in GitHub Desktop.
sub calculate-things (Junction $n) {
say "$n is a prime" if $n.is-prime;
say "$n is an even number" if $n %% 2;
say "$n is pretty big" if $n > 1e6;
$n²;
}
my @values = 1, 5, 42;
say 'EXACTLY ONE square is larger than 1e10'
if 1e10 < calculate-things @values.one;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment