Help for this page

Select Code to Download


  1. or download this
    count! = 0
    DO
    ...
    LOOP UNTIL LEN(datain$) > 0
    
    PRINT count!
    
  2. or download this
    use strict;
    use warnings;
    ...
        $count++;
    }
    print $count;
    
  3. or download this
    use strict;
    use warnings;
    ...
    }
    
    print $count;