Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created September 5, 2016 21:46
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/4eac24fbd0074d6f9497bd7902168720 to your computer and use it in GitHub Desktop.
Save zoffixznet/4eac24fbd0074d6f9497bd7902168720 to your computer and use it in GitHub Desktop.
sub calculate-things ($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;
}
my @values = 1, 5, 42, 1e7.Int;
my $x = calculate-things @values.any;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment