Skip to content

Instantly share code, notes, and snippets.

@gugod
Created August 6, 2009 21:21
Show Gist options
  • Save gugod/163573 to your computer and use it in GitHub Desktop.
Save gugod/163573 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl -l
use encoding 'utf8';
for my $cchar ("\x{0302}", "\x{030f}") {
print join " ", map { chr($_) . $cchar } 32..126;
print "----";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment