3 lines
49 B
Haskell
3 lines
49 B
Haskell
|
|
indexed :: [a] -> [(Int, a)]
|
||
|
|
indexed = zip [0..]
|