In Perl I can repeat a character multiple times using the syntax:
$a = \"a\" x 10; // results in \"aaaaaaaaaa\"
Is there a simple way to ac
In CoffeeScript:
( 'a' for dot in [0..10]).join('')