aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Shitov <andy@shitov.ru>2021-12-27 13:13:29 +0300
committerAndrew Shitov <andy@shitov.ru>2021-12-27 13:13:29 +0300
commit11de2a4b266e00f0b6e2c14e939fd05e653f9904 (patch)
treef63e61440cc599dd2902c2125631a772da31e318
parent767f501835ea07823607293b532b6a0520fafc3b (diff)
downloadperlweeklychallenge-club-11de2a4b266e00f0b6e2c14e939fd05e653f9904.tar.gz
perlweeklychallenge-club-11de2a4b266e00f0b6e2c14e939fd05e653f9904.tar.bz2
perlweeklychallenge-club-11de2a4b266e00f0b6e2c14e939fd05e653f9904.zip
145-1 by ash in Raku
-rw-r--r--challenge-145/ash/raku/ch-1.raku5
1 files changed, 5 insertions, 0 deletions
diff --git a/challenge-145/ash/raku/ch-1.raku b/challenge-145/ash/raku/ch-1.raku
new file mode 100644
index 0000000000..8ada593c11
--- /dev/null
+++ b/challenge-145/ash/raku/ch-1.raku
@@ -0,0 +1,5 @@
+my @a = 1, 2, 3;
+my @b = 4, 5, 6;
+
+my $scalar = [+](@a Z* @b);
+say $scalar;