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
# Test 8: Pipelines

print("Test 8: Pipelines")
result = [1, 2, 3] | map(fn(x) => x * 2)
print(result)
chained = [1, 2, 3, 4, 5] | map(fn(x) => x * 2) | where(fn(x) => x > 5)
print(chained)
print("✓ Pipelines work")