Help for this page

Select Code to Download


  1. or download this
    use integer;
    my $result = 5/3;
    print "$result\n";
    
  2. or download this
    my $result = int(5/3);
    print "$result\n";