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 10: Mutable variables

print("Test 10: Mutable Variables")
mut counter = 0
print(counter)
counter = counter + 1
print(counter)
counter = counter + 1
print(counter)
print("✓ Mutable variables work")