sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Download zsh-autosuggestions by
| ;; A Church-Numberal is a function, which takes a function f(x) | |
| ;; as its argument and returns a new function f'(x). | |
| ;; Church-Numerals N applies the function f(x) N times on x. | |
| ; predefined Church-Numerals 0 to 9 | |
| (define zero (lambda (f) (lambda (x) x))) | |
| (define one (lambda (f) (lambda (x) (f x)))) | |
| (define two (lambda (f) (lambda (x) (f (f x))))) | |
| (define three (lambda (f) (lambda (x) (f (f (f x)))))) | |
| (define four (lambda (f) (lambda (x) (f (f (f (f x))))))) |