Skip to content

Instantly share code, notes, and snippets.

@ryo-utsunomiya
Created November 16, 2013 03:42
Show Gist options
  • Save ryo-utsunomiya/7495651 to your computer and use it in GitHub Desktop.
Save ryo-utsunomiya/7495651 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use v5.12;
use warnings;
print 'Enter a string: ';
my $str = <STDIN>;
print 'Enter a number of times: ';
chomp(my $num = <STDIN>);
print $str x $num;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment