Skip to content

Instantly share code, notes, and snippets.

@mamemomonga
Last active September 25, 2019 12:17
Show Gist options
  • Select an option

  • Save mamemomonga/2d0cfb7362e1d45988f40a343b780647 to your computer and use it in GitHub Desktop.

Select an option

Save mamemomonga/2d0cfb7362e1d45988f40a343b780647 to your computer and use it in GitHub Desktop.
マリリンマンソン
#!/usr/bin/env perl
use strict;
use warnings;
my @d=qw(リ ン ソ);
my $d;
sub c { $d.=$d[int(rand($#d))] }
foreach(1..20) {
$d.="マ";
foreach(0..2) { c }
$d.="マ";
foreach(3..5) { c }
print "$d\n";
$d="";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment