Help for this page

Select Code to Download


  1. or download this
    print "Size array is not empty\n" if @size;
    print "The frequency is FREE!\n" if @size && $freq eq 'FREE';
    
  2. or download this
    if (@size) {
      #statements
    ...
    if (@size && $freq eq 'FREE') {
      #statements
    }