Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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 #