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

#!/usr/bin/ruby
#
#
var i = 1024;
while (i > 0) {
say i;
i.div!(2).int!;
}