Mega Code Archive

 
Categories / Perl / Language Basics
 

Output the result of division with string

#!/usr/bin/perl -w print "249 divided by 3 is ", 249 / 3, "\n";