lambash
A POSIX-like shell written for and using lambda calculus and it's derivatives.
Introductory Paper Lambda Calculus and Beyond
```
λx.x λx.x
λx.x 1 1
\x.x 2 2
id := \x.x
ipi = \x.x 3.1415
1 ≡ 1 λx.x ≡ λx.x ipi ≡ id 3.1415 ipi ≢ 3.1415
true = true true ≠ false
0 1.0 3.1415 271e-2
'f' ‘β’
"foo" “Γον”
null = void
() (1, 2)
[] [1, 2]
foo.rb ./folder/file.ext /somewhere/else https://nixpulvis.com
write foo.rb 3.1415 ()
read foo.rb 3.1415
execp cat foo.rb 3.1415 ```