Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samth/fancy-app
A Scala-style magic function application form
https://github.com/samth/fancy-app
Last synced: 1 day ago
JSON representation
A Scala-style magic function application form
- Host: GitHub
- URL: https://github.com/samth/fancy-app
- Owner: samth
- License: mit
- Created: 2011-05-16T19:51:27.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2022-07-31T20:34:05.000Z (over 2 years ago)
- Last Synced: 2025-01-28T22:35:13.686Z (3 days ago)
- Language: Racket
- Homepage:
- Size: 10.7 KB
- Stars: 43
- Watchers: 3
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
- awesome-racket-and-scheme - fancy-app - style magic function application form (Racket / Tools/lib)
README
(map (+ 1 _) (list 1 2 3))
(map (- 1 _) (list 1 2 3))
(map (- _ 1) (list 1 2 3))
(map (- _ _) (list 10 20 30) (list 1 2 3)) ;; => (list 9 18 27)(+ 1 (+ _ 2)) ;; => +: expected number, got #