source:
trunk/third/perl/h2pl/tcbreak
@
9009
Revision 9009, 179 bytes checked in by ghudson, 28 years ago (diff) |
---|
Line | |
---|---|
1 | #!/usr/bin/perl |
2 | |
3 | require 'cbreak.pl'; |
4 | |
5 | &cbreak; |
6 | |
7 | $| = 1; |
8 | |
9 | print "gimme a char: "; |
10 | |
11 | $c = getc; |
12 | |
13 | print "$c\n"; |
14 | |
15 | printf "you gave me `%s', which is 0x%02x\n", $c, ord($c); |
16 | |
17 | &cooked; |
Note: See TracBrowser
for help on using the repository browser.