aethershell 0.3.1

The world's first multi-agent shell with typed functional pipelines and multi-modal AI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Test 5: Comparisons

print("Test 5: Comparisons")
eq = 5 == 5
print(eq)
ne = 5 != 3
print(ne)
lt = 3 < 5
print(lt)
le = 5 <= 5
print(le)
gt = 10 > 5
print(gt)
ge = 5 >= 5
print(ge)
print("✓ Comparisons work")