minimal PostScript interpreter by croyal

c=0
for i in raw_input().split():
 if i=='=':c=c-1;print c
 else:c+=1

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

download

return to the top page