mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-05 12:34:05 +02:00
11 lines
133 B
Plaintext
11 lines
133 B
Plaintext
|
#!/usr/bin/perl
|
||
|
|
||
|
for ($n = 0; <>; $n++) {
|
||
|
if ($_ > $ym || !defined $ym) {
|
||
|
$xm = $n;
|
||
|
chop($ym = $_);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
print "$xm $ym $n\n";
|