Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Simple perl issue related to gt and >
  2. $load_traff = 36333298;
  3. $value =    1205553404;
  4.  
  5. if ( $load_traff gt $value ) {
  6.    print("Inside if. n");
  7. }
  8. else{
  9.    print("Out of if. n");
  10. }
  11.        
  12. Inside if.
  13.        
  14. $load_traff = 36333298;
  15. $value =    1205553404;
  16.  
  17. if ( $load_traff > $value ) {
  18.     print("Inside if. n");
  19. }
  20. else{
  21.     print("Out of if. n");
  22. }
  23.        
  24. Out of if.