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
# Test 6: Logical operations

print("Test 6: Logical Operations")
and_result = true && true
print(and_result)
or_result = false || true
print(or_result)
not_result = !false
print(not_result)
print("✓ Logical operations work")