[cvs] / pirate / test / python / bitwise.py Repository:
ViewVC logotype

View of /pirate/test/python/bitwise.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (download) (as text) (annotate)
Fri Oct 8 12:11:51 2004 UTC (5 years, 11 months ago) by rubys
Branch: MAIN
CVS Tags: HEAD
Refactor each test case into a separate file, when possible
print 1 & 3,	 # == 1
print 1 & 2 & 3, # == 0
print 1 | 3,	 # == 3
print 1 | 2 | 3, # == 3
print 1 ^ 3,	 # == 2
print 1 ^ 2 ^ 3, # == 0
print (15 & 22) | (1 ^ 9)  # == 14

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.5