Skip to content

Instantly share code, notes, and snippets.

@pixyzehn
Created November 20, 2013 02:45
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 pixyzehn/7556775 to your computer and use it in GitHub Desktop.
Save pixyzehn/7556775 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl -w
print "Enter a string: ";
$str = <STDIN>;
print "Enter a number of times : ";
chomp($num = <STDIN>);
$result = $str x $num;
print "The result is : \n$result";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment