uudecode by nn

System.in.eachLine{s->i=1
s[0]=~/[^be]/&&((((int)s[0]-32)&63).intdiv(3)).times{t=0
4.times{t=64*t+(((int)s[i++]-32)&63)}
printf("%c%c%c",t>>16&127,t>>8&127,t&127)}}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page