README

NAME

Ask - Provides ask as an alias for Raku core routine prompt

SYNOPSIS

use Ask;

my $answer = ask "Are you well I hope (Y/n)? ";
if $answer ~~ /:i y/ {
    say "Good, glad to hear it!";
}
else {
    say "Oh, I'm so sorry.";
}

DESCRIPTION

This module exports, by DEFAULT, ask as an alias for the built-in routine prompt.

AUTHOR

Tom Browder <[email protected]>

COPYRIGHT AND LICENSE

Copyright &#x00A9; 2022 Tom Browder

This library is free software; you can redistribute it or modify it under the Artistic License 2.0.

Ask v0.0.1

Provides 'ask' as an alias for Raku core routine 'prompt'

Authors

  • Tom Browder

License

Artistic-2.0

Dependencies

Test Dependencies

Provides

  • Ask

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.