summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bool1.py
blob: 99bd837927179512bf2d087166180cddc8d6924a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# tests for bool objects

# basic logic
print(not False)
print(not True)
print(False and True)
print(False or True)

# unary operators
print(+True)
print(-True)