• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H24-Nov-2016-445263

lib/IO/H24-Nov-2016-929576

t/H24-Nov-2016-2213

Build.PLH A D24-Nov-2016483 2017

ChangesH A D24-Nov-20162.1 KiB9846

MANIFESTH A D24-Nov-2016564 3029

META.jsonH A D24-Nov-2016978 4544

META.ymlH A D24-Nov-2016560 2625

Makefile.PLH A D24-Nov-2016561 2018

READMEH A D24-Nov-20161.1 KiB4627

README

1IO::Prompt version 0.997004
2
3By default, this module exports a single function: prompt().  It prompts the
4user to enter some input, and returns an object that represents the user input.
5
6You may specify various flags to the function to affect its behaviour; most
7notably, it defaults to automatically chomp the input, unless the -line
8flag is specified.
9
10Note that this is an interim re-release. A full release with better
11documentation will follow in the near future. Meanwhile, please consult
12the 'examples/' directory from this module's CPAN distribution to better
13understand how to make use of this module.
14
15
16INSTALLATION
17
18To install this module, run the following commands:
19
20    perl Makefile.PL
21    make
22    make test
23    make install
24
25
26Alternatively, to install with Module::Build, you can use the following commands:
27
28    perl Build.PL
29    ./Build
30    ./Build test
31    ./Build install
32
33
34
35DEPENDENCIES
36
37None.
38
39
40COPYRIGHT AND LICENCE
41
42Copyright (C) 2005, Damian Conway
43
44This library is free software; you can redistribute it and/or modify
45it under the same terms as Perl itself.
46