The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678 #!/usr/bin/ruby### https://rosettacode.org/wiki/Search_a_list#var haystack = %w(Zig Zag Wally Ronald Bush Krusty Charlie Bush Bozo);say haystack.last_index{|item| item == "Bush"};
#!/usr/bin/ruby
#
## https://rosettacode.org/wiki/Search_a_list
var haystack = %w(Zig Zag Wally Ronald Bush Krusty Charlie Bush Bozo);
say haystack.last_index{|item| item == "Bush"};