The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
123456789 #!/usr/bin/ruby### http://rosettacode.org/wiki/Pick_random_element#var arr = %w(north east south west);say arr.rand;say arr.rand(2).dump;
#!/usr/bin/ruby
#
## http://rosettacode.org/wiki/Pick_random_element
var arr = %w(north east south west);
say arr.rand;
say arr.rand(2).dump;