annotate 98076 @ 4522:8a3492516e1f

<oerjan> ` (echo \'#!/bin/sh\'; echo \'echo lambdabot: @tell `^_^v Get a better nick\') >bin/\'^_^v:\'; chmod +x bin/\'^_^v:\'
author HackBot
date Mon, 10 Mar 2014 20:27:16 +0000
parents b70362a4c382
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4269
b70362a4c382 <Bike> fetch http://lpaste.net/raw/98076
HackBot
parents:
diff changeset
1 -- Hi everyone!
b70362a4c382 <Bike> fetch http://lpaste.net/raw/98076
HackBot
parents:
diff changeset
2 -- Could please someone explain me an output of the function:
b70362a4c382 <Bike> fetch http://lpaste.net/raw/98076
HackBot
parents:
diff changeset
3
b70362a4c382 <Bike> fetch http://lpaste.net/raw/98076
HackBot
parents:
diff changeset
4 splitEvery n list = first : ( splitEvery n rest )
b70362a4c382 <Bike> fetch http://lpaste.net/raw/98076
HackBot
parents:
diff changeset
5 where (first, rest) = splitAt n list
b70362a4c382 <Bike> fetch http://lpaste.net/raw/98076
HackBot
parents:
diff changeset
6
b70362a4c382 <Bike> fetch http://lpaste.net/raw/98076
HackBot
parents:
diff changeset
7 -- it returns a lis of lists splitEvery :: Int -> [a] -> [[a]]
b70362a4c382 <Bike> fetch http://lpaste.net/raw/98076
HackBot
parents:
diff changeset
8 -- But I don't understand how it works, why it returns list of lists.
b70362a4c382 <Bike> fetch http://lpaste.net/raw/98076
HackBot
parents:
diff changeset
9 -- splitAt returns TUPLE and "first" is somehow joined to it.