Created
June 13, 2014 10:22
-
-
Save Altreus/4387d7c25ac35151926f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ re.pl | |
| $ use warnings; use 5.010; | |
| $ (0 > undef) . "\n" | |
| Use of uninitialized value in numeric gt (>) at (eval 309) line 5, <FIN> line 2. | |
| $ (0 >= undef) . "\n" | |
| Use of uninitialized value in numeric ge (>=) at (eval 310) line 5, <FIN> line 3. | |
| 1 | |
| $ (0 == undef) . "\n" | |
| Use of uninitialized value in numeric eq (==) at (eval 311) line 5, <FIN> line 4. | |
| 1 | |
| $ (0 <= undef) . "\n" | |
| Use of uninitialized value in numeric le (<=) at (eval 312) line 5, <FIN> line 5. | |
| 1 | |
| $ (0 < undef) . "\n" | |
| Use of uninitialized value in numeric lt (<) at (eval 313) line 5, <FIN> line 6. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment