Created
August 3, 2016 15:59
This file contains hidden or 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
#!/usr/bin/env perl6 | |
enum Hand <π β β>; | |
multi infix:<β>(β, π) { True } | |
multi infix:<β>(π, β) { True } | |
multi infix:<β>(β , β) { True } | |
multi infix:<β>($ , $ ) { False } | |
my $p1 = Hand.roll; | |
say "Player 1 chooses: {$p1}"; | |
my $p2 = Hand.roll; | |
say "Player 2 chooses: {$p2}"; | |
say do { | |
when $p1 β $p2 { "Player 1 wins!"} | |
when $p2 β $p1 { "Player 2 wins!"} | |
default { "It's a tie!" } | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment