tokuhirom (owner)

Revisions

gist: 225742 Download_button fork
public
Public Clone URL: git://gist.github.com/225742.git
Embed All Files: show embed
thread-with-perlio-encoding.pl #
1
2
3
4
5
6
# This code makes SIGTRAP
use threads;
binmode STDOUT, ":encoding(utf8)";
async { print "x" }->join;
exit 0;