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 7: Lambdas

print("Test 7: Lambdas")
identity = fn(x) => x
print(identity(42))
double = fn(x) => x * 2
print(double(21))
add = fn(a, b) => a + b
print(add(3, 4))
print("✓ Lambdas work")