Skip to content

Instantly share code, notes, and snippets.

@sharl
Created March 8, 2013 13:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sharl/5116483 to your computer and use it in GitHub Desktop.
Save sharl/5116483 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
print r(-1882006324) . ' ' . r(-2062980754) . "\n";
sub r {
my $s = '';
srand(shift);
while (my $r = int(rand(27))) {
$s .= chr(ord('`') + $r);
}
$s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment