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 3: Records

print("Test 3: Records")
rec = {name: "Alice", age: 30}
print(rec)
empty = {}
print(empty)
nested = {user: {name: "Bob"}, active: true}
print(nested)
print("✓ Records work")