You want to iterate over the elements in an array
#!/usr/bin/env raku
use v6;
my @a = <94 13 97 95 12 13 74 10 47 4 62 47 75 36 25 35 0 71 56 50 72 39 30 93>;
for @a -> $e {
say $e.Str;
}
say $_.Str for @a;
# vim: expandtab shiftwidth=4 ft=perl6
See Also
01strings
Perl 6 Cookbook: Introduction to Strings
01strings
Converting between characters and numbers.
01strings
Reversing a String by Word or Character
01strings
Trimming whitespace from both ends of a string
04arrays
Specifying a list in your program
The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society.
All rights reserved.