Oops. Of course, print b should also be print b. :-(

This commit is contained in:
Guido van Rossum 1997-08-18 13:42:28 +00:00
parent 57e846f803
commit ce32096661

View file

@ -9,7 +9,7 @@ B = 'cheese shop'
a = r.encrypt(A)
print `a`
b = r.encryptmore(B)
print b
print `b`
A1 = r.decrypt(a)
print A1