Logo

Programming-Idioms

History of Idiom 224 > diff from v21 to v22

Edit summary for version 22 by programming-idioms.org:
[Haskell] Variable names x, items

Version 21

2020-07-19, 19:01:03

Version 22

2020-07-20, 09:00:13

Idiom #224 Add element to the beginning of the list

Insert element x at the beginning of list items.

Idiom #224 Add element to the beginning of the list

Insert element x at the beginning of list items.

Extra Keywords
prepend prefix start
Extra Keywords
prepend prefix start
Code
prepend x xs = x : xs
Code
items2 = x : items
Comments bubble
This creates a new list items2