projects
/
p5sagit/p5-mst-13.2.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
extra code in pp_concat, Take 2
[p5sagit/p5-mst-13.2.git]
/
h2pl
/
tcbreak
Commit
Line
Data
e929a76b
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;