From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/ruby
#
#
say (1..10 -> reduce('+'));
say (1..10 -> reduce{|a,b| a + b});