-
-
Save zoffixznet/df4d6eff35eb7a6064e58d000b0c9c95 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, 1e7.Int; | |
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