Remenber Previous Input by hallvabo

import os
f=open('_','a+')
print f.read()
f.truncate(0)
f.write(os.read(0,1e4))

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

download

return to the top page