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
| #!/usr/bin/env perl | |
| use 5.020; | |
| use utf8; | |
| use warnings; | |
| use autodie; | |
| use feature qw/signatures postderef/; | |
| no warnings qw/experimental::postderef/; | |
| binmode STDOUT, ':utf8'; |
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
| #!/usr/bin/env perl | |
| use 5.020; | |
| use utf8; | |
| use warnings; | |
| use autodie; | |
| use feature qw/signatures postderef/; | |
| no warnings qw/experimental::postderef/; | |
| use open qw/:std :utf8/; | |
| use strict; |
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
| #!/usr/bin/env perl | |
| use 5.020; | |
| use utf8; | |
| use warnings; | |
| use autodie; | |
| use feature qw/signatures postderef/; | |
| no warnings qw/experimental::postderef/; | |
| use open qw(:std :utf8); | |
| use DateTime; |
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
| #include <fcntl.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <termios.h> | |
| #include <time.h> | |
| #include <unistd.h> | |
| int kbhit() { | |
| struct termios oldt, newt; |