Why Perl 6 is better than Ruby
pugs> "chris is cool".say
"chris is cool".say
chris is cool
Bool::True
pugs>
>> print "chris is cool"
chris is cool=> nil
Ruby says that “chris is cool” is ‘nil’. Perl 6 says “chris is cool” is ‘Bool::True’. Thanks Perl 6.
“Ruby is cool”=> nil
