2.6. Division

There are other numerical operators as well, such as /, *, -
Especially / is interesting as 3 / 0 returns Inf. 
That is, in Perl6 the division by 0 problem is solved. 

Example 2-6. examples/scalars/divide.p6

#!/usr/bin/perl6

print "First number:";
my $a = readline;
print "Second number:";
my $b = readline;

my $c = $a / $b;

say "\nResult: $c";