summaryrefslogtreecommitdiff
path: root/testsuite/tests/array/should_run/arr001.hs
blob: 325ce1bc09d768ed880d3f93bd7c19b5f72df1b3 (plain)
1
2
3
4
5
6
7
8
9
-- !!! Simple array creation

import Data.Array

main =
 let a1 = array (1,3) (zip [2,3,1] ['a'..'d']) in
 print a1

-- Result: