I
I
Ilya bow2016-11-18 15:37:22
linux
Ilya bow, 2016-11-18 15:37:22

How to click the "search next" button in nano?

ctrl+w pressed he found a word for me but how to find the rest of the words??? Well, they are the same.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
K
ky0, 2016-11-18
@8889996

Again Ctrl+W, Enter.

S
Stalker_RED, 2017-02-22
@Stalker_RED

Looks like you forgot to attach the fmap function code. However, it is not difficult to guess what was there:
https://jsfiddle.net/k8jkuh3d/

S
Sergey Melnikov, 2017-02-22
@mlnkv

function square(x) { 
  return x * x; 
}

function add(a, b) {
  return a + b
}

function fmap(a, gen) {
  return function() {
    return a(gen.apply(null, arguments))
  }
}

var squareAdd = fmap(square, add)

squareAdd(2, 3) // 25
squareAdd(5, 7) // 144

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question