view bin/CaT @ 3932:f0da0cbc6447

<oerjan> addquote <ais523> hmm\xe2\x80\xa6 I guess the difference between me and most esolangers is that I don\'t instantly go and put it into a BF derivative and call it a day
author HackBot
date Wed, 23 Oct 2013 12:54:24 +0000
parents d9ab4c1c05dd
children
line wrap: on
line source

#!/usr/bin/env python
import sys
sys.stdout.write ((lambda s: "".join([(s[i].upper() if i%2==0 else s[i].lower()) for i in range(len(s)) ]))(open("/dev/stdin").read()))