Skip to content

Instantly share code, notes, and snippets.

@colomon
Created January 3, 2011 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colomon/763743 to your computer and use it in GitHub Desktop.
Save colomon/763743 to your computer and use it in GitHub Desktop.
use IO::Prompter;
subset Coefficient of Num where 0..1;
prompt -> Num $amount, Coefficient $rate, Int $term, Str $desc where /\S/ {
say "After $term year(s), $amount will be worth ",
$amount * (1+$rate)**$term;
say $desc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment