source: vendor/perl/5.8.8/h2pl/tcbreak2@ 3181

Last change on this file since 3181 was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 180 bytes
Line 
1#!/usr/bin/perl
2
3require 'cbreak2.pl';
4
5&cbreak;
6
7$| = 1;
8
9print "gimme a char: ";
10
11$c = getc;
12
13print "$c\n";
14
15printf "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.