summaryrefslogtreecommitdiff
path: root/files/practicum/Flatten.icl
blob: 2d6d82348310586f76169516f742f4caf0291e4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Flatten

import StdEnv

//	1.
Start	= flatten [ [x 0,x 1,x 2], [x 3,x 4], [x 5], [] ]

//	2.
Start   = flatten [ [ [x 0,x 1,x 2], [x 3,x 4] ], [], [ [x 5], [] ] ]

//	3.
Start	= flatten (flatten [ [ [x 0,x 1,x 2], [x 3,x 4] ], [], [ [x 5],[] ] ] )

x i		= x +++ toString i