Less Then or Equal To: <= Script Example: #!/usr/bin/perl print "Content-type: text/html\n\n"; $a=2; $b=4; if($a <= $b) { print "$a is less then or equal to $b\n"; } else { print "$b is less then $a\n"; } exit(); << Back
#!/usr/bin/perl print "Content-type: text/html\n\n"; $a=2; $b=4; if($a <= $b) { print "$a is less then or equal to $b\n"; } else { print "$b is less then $a\n"; } exit();