Skip to content

Commit

Permalink
check functioning of NOT operator in python
Browse files Browse the repository at this point in the history
  • Loading branch information
justanindieguy committed Jan 17, 2023
1 parent 5aa71fc commit 39b469f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Bit-manipulationTechniques/NotOperator/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
def main():
x = 0
print(~x)


if __name__ == "__main__":
main()

0 comments on commit 39b469f

Please sign in to comment.