Skip to content

Instantly share code, notes, and snippets.

@syohex
Created December 14, 2011 14:59
Show Gist options
  • Save syohex/1476922 to your computer and use it in GitHub Desktop.
Save syohex/1476922 to your computer and use it in GitHub Desktop.
quickrun.el outputter sample
#!perl
use strict;
use warnings;
use utf8;
binmode STDOUT, ":utf8";
my @chars = qw/あ い う え お/;
for my $i (1..10) {
print $chars[ int(rand(scalar @chars) ) ] . "っぱい\n";
}
__END__
# (defface oppai-face '((t (:height 2.0 :bold t :underline t))) nil)
#
# Local Variables:
# quickrun-option-outputter: (lambda () (highlight-phrase "おっぱい" 'oppai-face))
# End:
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment