This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
bisect-runner.pl should remove the stdin-is-a-tty test completely.
[perl5.git] / h2pl / tcbreak
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;