8000 GitHub - code-at-work/curry-example: Simple curry application
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

code-at-work/curry-example

Folders and files

NameName
Last co 8000 mmit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Curry Example

Here the video: https://youtu.be/ejj8vUjOVog

const curry2 = fn => a => b => fn(a,b)

const lt = curry2((a,b) => a<b)

const is_greater_than_3 = lt(3)

is_greater_than_3(4) // true

About

Simple curry application

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0