summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-11-23 16:38:10 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-23 16:38:10 +0000
commit67d143eceea774b64914343793da246aa41f6fb5 (patch)
tree94c81a77d7647cba299f3edead1c680ea267b3dd /pod
parent8ce7ecff7e56f79cc9d308fc7231ea214fdc2161 (diff)
downloadperl-67d143eceea774b64914343793da246aa41f6fb5.tar.gz
FAQ sync.
p4raw-id: //depot/perl@13205
Diffstat (limited to 'pod')
-rw-r--r--pod/perlfaq.pod6
-rw-r--r--pod/perlfaq3.pod6
-rw-r--r--pod/perlfaq4.pod5
3 files changed, 3 insertions, 14 deletions
diff --git a/pod/perlfaq.pod b/pod/perlfaq.pod
index 4c65915401..e0649fb5af 100644
--- a/pod/perlfaq.pod
+++ b/pod/perlfaq.pod
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq - frequently asked questions about Perl ($Date: 2001/10/16 13:27:22 $)
+perlfaq - frequently asked questions about Perl ($Date: 2001/11/19 17:09:37 $)
=head1 DESCRIPTION
@@ -226,10 +226,6 @@ How can I generate simple menus without using CGI or Tk?
=item *
-What is undump?
-
-=item *
-
How can I make my Perl program run faster?
=item *
diff --git a/pod/perlfaq3.pod b/pod/perlfaq3.pod
index 8bd3d45399..7e0c193da7 100644
--- a/pod/perlfaq3.pod
+++ b/pod/perlfaq3.pod
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq3 - Programming Tools ($Revision: 1.9 $, $Date: 2001/11/09 08:06:04 $)
+perlfaq3 - Programming Tools ($Revision: 1.10 $, $Date: 2001/11/19 17:09:37 $)
=head1 DESCRIPTION
@@ -432,10 +432,6 @@ http://www-users.cs.umn.edu/%7Eamundson/perl/perltk/toc.html .
The http://www.cpan.org/authors/id/SKUNZ/perlmenu.v4.0.tar.gz
module, which is curses-based, can help with this.
-=head2 What is undump?
-
-See the next question on ``How can I make my Perl program run faster?''
-
=head2 How can I make my Perl program run faster?
The best way to do this is to come up with a better algorithm. This
diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod
index f9f722bf02..f602d24b27 100644
--- a/pod/perlfaq4.pod
+++ b/pod/perlfaq4.pod
@@ -136,15 +136,13 @@ functions is that it works with numbers of ANY size, that it is
optimized for speed on some operations, and for at least some
programmers the notation might be familiar.
-=over 4
-
=item B<How do I convert Hexadecimal into decimal:>
Using perl's built in conversion of 0x notation:
$int = 0xDEADBEEF;
$dec = sprintf("%d", $int);
-
+
Using the hex function:
$int = hex("DEADBEEF");
@@ -249,7 +247,6 @@ Using Bit::Vector:
The remaining transformations (e.g. hex -> oct, bin -> hex, etc.)
are left as an exercise to the inclined reader.
-=back
=head2 Why doesn't & work the way I want it to?