Help for this page

Select Code to Download


  1. or download this
      return $foo[$i];
  2. or download this
      return $foo[rand(scalar @foo)];
  3. or download this
      return $foo[ rand(scalar @foo) ];
  4. or download this
      if ( $foo ) {
          bar();
      } else {
          baz();
      }
    
  5. or download this
      if ( $foo ) {
          bar();
      }
      else {
          baz();
      }