Coder Social home page Coder Social logo

mtso / hof Goto Github PK

View Code? Open in Web Editor NEW
5.0 2.0 7.0 38 KB

Higher-order functions in different languages.

JavaScript 3.94% Python 6.17% Go 4.62% Swift 5.68% Rust 3.73% C++ 6.72% F# 0.91% Haskell 8.64% Standard ML 2.90% Ruby 4.45% C# 5.35% D 4.41% R 3.46% Clojure 1.70% Common Lisp 2.36% PHP 5.43% Kotlin 4.71% Elm 10.22% PureScript 11.82% Raku 2.75%
hof higher-order-functions example-code

hof's Issues

Add other languages

In the language of your choice, write an example of:

add(1)(2) // A function that returns a function value.
each([1, 2, 3], print) // A function that takes a function parameter.

Add [language name].[language extension] source file to the root.

For example:

// javascript.js

function add(x) {
  return function(y) { return x + y }
}

function each(list, callback) {
  for (var i = 0; i < list.length; i++) { callback(list[i]) }
}

// Example usage
add(1)(2)
each([1, 2, 3], console.log)

Please limit each pull request to one language, thank you.
Though multiple pull requests are welcome :)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.