summaryrefslogtreecommitdiff
path: root/files/practicum/Words.icl
blob: 804d70c25076217441df9f1fabf0799a5007f789 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
implementation module Words

import StdEnv, Group

Start = words tekst

tekst = flatten
		  [ [ 'Far out in the uncharted backwaters of the unfashionable end of the western spiral\n' ]
		   ,[ 'arm of the Galaxy lies a small unregarded yellow sun.\n' ]
		   ,[ '\n' ]
		   ,[ 'Orbiting this at a distance of roughly ninety-two million miles is an utterly\n' ]
		   ,[ 'insignificant little blue-green planet whose ape-descended life forms are so \n' ]
		   ,[ 'amazingly primitive that they still think digital watches are a pretty neat idea.\n' ]
		   ,[ '\n' ]
		   ,[ 'This planet has - or rather had - a problem, which was this: most of the people\n' ]
		   ,[ 'living on it were unhappy for pretty much of the time.\n' ]
		   ,[ 'Many solutions were suggested for this problem, but most of these where largely\n' ]
		   ,[ 'concerned with the movements of small green pieces of paper, which is odd because\n' ]
		   ,[ 'on the whole it wasnt the small green pieces of paper that were unhappy.\n' ]
		  ]

words :: // meest algemene type
words ...