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
# Test 4: Arithmetic

print("Test 4: Arithmetic")
add = 10 + 5
print(add)
sub = 10 - 5
print(sub)
mul = 10 * 5
print(mul)
div = 10 / 5
print(div)
print("✓ Arithmetic works")