-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathholbrook-tagged.dat
More file actions
1530 lines (1320 loc) · 182 KB
/
holbrook-tagged.dat
File metadata and controls
1530 lines (1320 loc) · 182 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1.
NIGEL THRUSH page 48
I have four in my Family Dad Mum and <ERR targ=sister> siter </ERR> .
My Dad works at Melton.
My <ERR targ=sister> siter </ERR> <ERR targ=goes> go </ERR> to Tonbury.
My Mum goes out <ERR targ=sometimes> some times </ERR> .
I go to Bridgebrook i go out <ERR targ=sometimes> some times </ERR> on Tuesday night i go to Youth <ERR targ=club> clob </ERR> .
On thursday nights I go <ERR targ=bellringing> bell ringing </ERR> on Saturdays I go down to the farm.
on sundays I go to church.
I go to bed at 10 o clock I <ERR targ=watch> wakh </ERR> TV at 5 o clock I live in a house.
The house is in the world.
I live at Boar Parva it is near Melton and Bridgebrook and Smallerden.
The house is white it has stone up the <ERR targ=front> frount </ERR> it is the first from Bridgebrook and the <ERR targ=second> sexeon </ERR> from Smallerden.
My Mum is at home She goes to the shop on fridays My Dad goes to work at Smallerden .
What I do when I get home from school.
On monday I sometimes go down the farm in the night I <ERR targ=watch> wach </ERR> TV there is BBC and I.T.V.
I like I.T.V.
We call Anglia I.T.V.
We have got Anglia like to <ERR targ=watch> wach </ERR> <ERR targ=cowboys> cow Boys </ERR> .
On Tuesday I get off the bus and <ERR targ=sometimes> some times </ERR> in the night I go to the Youth <ERR targ=club> colbe </ERR> .
I like to <ERR targ=watch> wach </ERR> T.V.
there is a lot of things on T.V.
I <ERR targ=watch> wach </ERR> it each night.
.
I <ERR targ=think> thing </ERR> <ERR targ=TV> tv </ERR> is good but people say it gives us <ERR targ=square> squar </ERR> <ERR targ=eyes> iyes </ERR> .
The Murder Car.
1 night when it was dark about 12 <ERR targ=o'clock> oclock </ERR> a man was <ERR targ=knocked> nock </ERR> down by a car.
The body was found <ERR targ=at> a </ERR> 7 <ERR targ=o'clock> oclock </ERR> in the morning.
The name of the man who was <ERR targ=killed> kild </ERR> was Jack Robbinson he has black hair brown eyes blue Jacket and blue Jeans.
No one <ERR targ=saw> see </ERR> the car.
there had <ERR targ=been> bean </ERR> a lot of people <ERR targ=knocked> nock </ERR> down by a car so they <ERR targ=called> cald </ERR> it the murder car.
The Police <ERR targ=came> cam </ERR> out to look for the car.
The other cars were black so one of the other people said.
The murder man has a black beard The next day one of the policemen were <ERR targ=killed> killd </ERR> the next day they found the car over the Hill <ERR targ=there> the </ERR> was the man near it he was dead.
I kissed a girl one night <ERR targ=Her> Here </ERR> <ERR targ=eyes> iyes </ERR> were burning blue She said o do you love me Of course of course I do.
Bell Ringing.
When you start Bell Ringing you <ERR targ=have to> haveto </ERR> ring a bell <ERR targ=before> be for </ERR> you can do <ERR targ=anything> any thing </ERR> <ERR targ=else> als </ERR> .
It takes a lot to ring a bell on the rope there is a sally.
ON the bell there is a <ERR targ=wheel> weel </ERR> .
the <ERR targ=wheel> weel </ERR> has the rope on it some <ERR targ=sallies> sally </ERR> are green and the <ERR targ=others> other </ERR> are red white and blue.
When you can ring.
You have to ring <ERR targ=rounds> rouns </ERR> that is when you go 123456 when you can <ERR targ=do> don </ERR> that.
You <ERR targ=ring> rings </ERR> like this.
These are the names of them Plain Hunt, plain Bob, Grandsire Doubles.
Grandsire Triples it takes a long time to ring them.
I have been ringing a long time we go to Smallerden and Oakwell and Guildwell we will <ERR targ=be> we </ERR> going to Smallerden this Thursday I ring 1 2 and 3 but not 4 5 and 6 I like going bell ringing, some time the bell <ERR targ=breaks> brakes </ERR> And the rope goes up and if you are not <ERR targ=careful> carfull </ERR> you will go up with it, we start at 7.30 and end at 9.oclock.
Me and my dad bike to Melton.
THE SICK SOW OF THE ARMY COURT
One day Sergent S. M. Bullimore told Hut 29 to clean <ERR targ=Cynthia's> Cynthia </ERR> pig sty out.
When Hut 29 got there they had to go and get some <ERR targ=gas> gass </ERR> <ERR targ=masks> marsks </ERR> because the smell was to strong
When S M Bullimore came to the pig sty the pig was laid out on the <ERR targ=floor> foor </ERR>
when they came back S. M. Bullimore said <ERR targ=what> wat </ERR> have you been doing to my sow
we have not done anything we had to go and get some <ERR targ=gas> gass </ERR> <ERR targ=masks> marsks </ERR> because the smell was <ERR targ=too> to </ERR> strong
that is only the soap <ERR targ=what> wat </ERR> I <ERR targ=wash> wosh </ERR> it with
<ERR targ=perhaps> prasp </ERR> he <ERR targ=ate> et </ERR> some soap
Flogger said shall I go and get the vet
get back in the line <ERR targ=before> be for </ERR> I put you on charge
Flogger said under <ERR targ=his> is </ERR> breath `go and have a <ERR targ=pony> poney </ERR> run'
what did you say
o nothing sir
go and get some <ERR targ=whiskey> wiskey </ERR>
okay sir
put some soap in it Flogger said Oswald
OK said Flogger
Flogger went off
a little while after he came with a large <ERR targ=soap> soape </ERR> <ERR targ=whiskey> wiskey </ERR>
he <ERR targ=gave> cave </ERR> it to S. M. Bullimore
Then he <ERR targ=gave> cave </ERR> it to the pig
A little while after the pig <ERR targ=got> go </ERR> up and there beside <ERR targ=her> here </ERR> were six little pigs
S M Bullimore said that made <ERR targ=her> here </ERR> better that was not me that was the <ERR targ=soap> sope </ERR>
you are on charge
<ERR targ=what> wat </ERR> did you give <ERR targ=her> here </ERR>
I <ERR targ=gave> cave </ERR> her some <ERR targ=whiskey> wiskey </ERR> and <ERR targ=soap> sope </ERR> you <ERR targ=gave> cave </ERR> her that
no I <ERR targ=never> knver </ERR> I sir
you did
<ERR targ=that's> thats </ERR> one thing sir It has made her better.
Pigs When young up to being <ERR targ=killed> kild </ERR> for bacon
When they are young you have to <ERR targ=wait> wate </ERR> 3 days then you can <ERR targ=inject> injeck </ERR> them for pneumonia diseases
you have <ERR targ=make> mack </ERR> <ERR targ=sure> shore </ERR> they have <ERR targ=dry> drye </ERR> straw
when you clean them out you should not leave a <ERR targ=fork> falk </ERR> in with them because the mother might <ERR targ=knock> nock </ERR> it down and the little pigs might stab <ERR targ=themselves> them souve </ERR>
we give <ERR targ=them> the </ERR> <ERR targ=worm> worme </ERR> <ERR targ=powder> pouder </ERR>
that is when they get the <ERR targ=worm> worme </ERR>
this will stop them from going thin
you should box a little place off so only the little pigs can get in it
that is so they can <ERR targ=get> ge </ERR> out of the way of <ERR targ=their> there </ERR> mother
some people put a light in with <ERR targ=them> theme </ERR> to <ERR targ=keep> geep </ERR> them warm
you have to make <ERR targ=sure> shore </ERR> that mother has a lot of milk.
If she <ERR targ=has> as </ERR> not got <ERR targ=enough> a nougth </ERR> milk you will have to feed them on a bottle
when they <ERR targ=can> came </ERR> eat a little bit you can get them some little nuts <ERR targ=for> of </ERR> <ERR targ=fattening> fating </ERR>
they can <ERR targ=eat> eate </ERR> some meal when they get a little <ERR targ=bigger> biger </ERR>
we give them some <ERR targ=fattening> fating </ERR> food called Nomber 2
<ERR targ=when> whe </ERR> you wean that is take them from their mother you have got to see if they fight if there is any little <ERR targ=ones> wones </ERR>
fighting
when they <ERR targ=are> and </ERR> <ERR targ=big> bing </ERR> you have to see about <ERR targ=weighing> waying </ERR>
when they have been <ERR targ=weighed> waid </ERR> and <ERR targ=ready> reddy </ERR> to go away to be <ERR targ=killed> kild </ERR> .
Billy Bunter was <ERR targ=too> to </ERR> large So they sent for <ERR targ=Him> Im </ERR> in charge
<ERR targ=Him> Im </ERR> in charge was <ERR targ=too> to </ERR> thin So they sent <ERR targ=for> fro </ERR> Rin Tin Tin
Rin Tin Tin heart is poor So they sent for Barbra Moore
Barbra Moore was having dinner So <ERR targ=they> the </ERR> sent for Yule Brinner
Yule Brinner sang <ERR targ=too> to </ERR> high Then they went to space in the sky
My heart is full of sadness My heart is full of joy It might be my wife Or it might be Helen of <ERR targ=Troy> Toy </ERR>
One Saturday I <ERR targ=thought> though </ERR> I would go to the Races at London
I went on my <ERR targ=Royal> Royl </ERR> Enfield
they can go quite <ERR targ=fast> farst </ERR>
this was a <ERR targ=Royal> Royl </ERR> Enfield <ERR targ=?> Consulatoin </ERR>
there were some <ERR targ=Royal> Royl </ERR> Enfield Racing there as well
I saw a <ERR targ=Royal> Royl </ERR> Enfield come first it was like mine.
there were the new <ERR targ=Japanese> Japannese </ERR> <ERR targ=Honda> Hondor </ERR>
they are very <ERR targ=fast> farst </ERR> and <ERR targ=getting> geting </ERR> quite popular in England
I saw one man come off
he was on a B.S.A.
One man had to go in Hospital because he broke <ERR targ=his> is </ERR> <ERR targ=leg> lege </ERR>
<ERR targ=another> a nouther </ERR> man <ERR targ=hurt> hearte </ERR> <ERR targ=his> is </ERR> arm in a sidecar race
I <ERR targ=don't> dont </ERR> <ERR targ=think> thing </ERR> it was much
I <ERR targ=saw> sow </ERR> a <ERR targ=sidecar> side car </ERR> <ERR targ=turn> turne </ERR> right over
the <ERR targ=sidecar> side care </ERR> man was alright but the <ERR targ=motorbike> motor bike </ERR> Rider was thrown into the crowd
I <ERR targ=don't> dont </ERR> <ERR targ=know> no </ERR> what <ERR targ=happened> hapend </ERR> to him
he was <ERR targ=hurt> heart </ERR> quite bad.
the sidecar broke off the <ERR targ=motorbike> moter bike </ERR> and <ERR targ=spun> spund </ERR> down the track for 7 yards then hit a man who was on the corner and killed him
his hat was blowing down the track
the <ERR targ=motorbike> moter bike </ERR> <ERR targ=caught> caugh </ERR> fire and <ERR targ=blew> blow </ERR> up
the <ERR targ=petrol> petal </ERR> went all over the track but they <ERR targ=soon> sone </ERR> put it out by sand
there was some oil got on the track as well
it made it very slippery
<ERR targ=There> They </ERR> were quite a few people there because it was a nice dry day
The <ERR targ=final> fianl </ERR> race was on
there were 2 <ERR targ=Royal> Royl </ERR> Enfield 3 Japanese <ERR targ=Honda> Hondor </ERR> 1 B.S.A.
3 <ERR targ=Triumph> Triumh </ERR>
they were on the starting line
Bang <ERR targ=they're> there </ERR> off
one BSA is still on the starting line the rest are round the bend
I can see one man off
he is on a <ERR targ=Triumph> trumh </ERR>
I think a Japanese <ERR targ=Honda> Hondor </ERR> is in the lead
I think he is <ERR targ=going> go </ERR> to lead
<ERR targ=he's> his </ERR> <ERR targ=won> one </ERR> by 3 yards and a <ERR targ=Royal> Royl </ERR> Enfield 2 and a <ERR targ=Honda> Hondor </ERR> 3.
The End
we went over the football field it was quite wet and soon made my toes cold.
the grass was quite long now it <ERR targ=shone> shon </ERR> with the dew on it.
a field <ERR targ=ploughed> ploud </ERR> next to it I think it was <ERR targ=done> don </ERR> yesterday.
on the other side was <ERR targ=a> an </ERR> hedge
it had a lot of thorns in it .
they <ERR targ=had> hade </ERR> <ERR targ=cleaned> cleand </ERR> the river and made it very wide <ERR targ=for> fore </ERR> the ducks
there were some <ERR targ=potatoes> potato </ERR> in the water .
there were some brussels men sitting in the <ERR targ=pathway> parth way </ERR> round a fire
we had to go on to a <ERR targ=ploughed> ploud </ERR> field to get round them this made my shoes <ERR targ=heavy> hevey </ERR> .
this was quite muddy
some boys did not think much to it nor did I but we still went.
the dew on the brussels leaves made them <ERR targ=like> look </ERR> <ERR targ=pearls> pirls </ERR> .
Mr. Holbrook went over the brook first
some were boys going round but only one went
after all the rest went over the tree Gerald <ERR targ=nearly> nealy </ERR> went in
one foot <ERR targ=touched> toch </ERR> the water
then we went across the new <ERR targ=piece> pice </ERR> of grass into school
we went and <ERR targ=cleaned> cleand </ERR> our shoes with paper
then the bell went for <ERR targ=break> brack </ERR> .
2.
JOAN STALL page 54
A poem A little yellow bird sat on my window sill He <ERR targ=hopped> hop </ERR>
and <ERR targ=popped> poped </ERR> about He <ERR targ=whistled> wisheld </ERR> he <ERR targ=chirped> cherped </ERR> .
I <ERR targ=tried> trid </ERR> to <ERR targ=catch> chach </ERR> my little yellow <ERR targ=bird> brid </ERR> but he flew in to the golden yellow sun, O how I wish that was my yellow <ERR targ=bird> brid </ERR> .
ANN That's what you think JOHN That's what I <ERR targ=know> no </ERR> . JEAN the longer you stay here talking we <ERR targ=can't> carn't </ERR> get on with you here DENNIS Come on John I <ERR targ=know> no </ERR> when <ERR targ=we're> were </ERR>
not <ERR targ=wanted> whanted </ERR> JEAN Yes <ERR targ=you're> your </ERR>
not <ERR targ=wanted> whated </ERR> here JOHN <ERR targ=Goodbye> Good by </ERR>
ANN I knew that would happen .
Apple red and green start are bright The apple trees are tall The <ERR targ=leaves> leavs </ERR> are small The <ERR targ=apples> apple </ERR>
fall in <ERR targ=autumn> Aount </ERR> time
When <ERR targ=you> yow </ERR> get to the <ERR targ=cores> corres </ERR> inside the <ERR targ=cores> corres </ERR> are pips <ERR targ=you> yow </ERR> <ERR targ=throw> thorght </ERR> the <ERR targ=cores> corres </ERR> on the fire to <ERR targ=burn> brun </ERR> then.
the boys in our village go in the <ERR targ=orchard> orcher </ERR> and <ERR targ=climb> clim </ERR> the trees and pinch <ERR targ=them> then </ERR>
all then they run away with <ERR targ=them> then </ERR> .
then the <ERR targ=earwigs> eyewigs </ERR> fall out in <ERR targ=their> there </ERR> <ERR targ=pockets> pocket </ERR>
the <ERR targ=apples> apple </ERR> are sweet.
the trees are <ERR targ=full> fall </ERR> of <ERR targ=apples> apple </ERR> .
some of <ERR targ=them> then </ERR> are cookers.
the apples are so gay <ERR targ=hanging> haing </ERR> on the trees.
with the sun on <ERR targ=them> then </ERR> .
no wonder the boys like pinch <ERR targ=them> then </ERR>
What I am going to do when I leave school
When I leave I <ERR targ=want> whant </ERR> to be a <ERR targ=hairdresser> hair dreser </ERR> in Melton or Tonbury.
or I <ERR targ=want> whant </ERR> to work in a shop.
I do not <ERR targ=want> whont </ERR> to get <ERR targ=married> marryid </ERR> till I am <ERR targ=twenty one> twentone </ERR> .
When I have children I am going to leave work and the <ERR targ=husband> husbon </ERR> has got to like children and <ERR targ=take> tack </ERR> them out.
I <ERR targ=want> whant </ERR> twins.
and I <ERR targ=want> whant </ERR> four bridesmaids.
I <ERR targ=want> whont </ERR> to live in a bungalow.
for my holiday I would like to go to <ERR targ=Butlins> butlins </ERR> , for a <ERR targ=honeymoon> hunemoon </ERR> I like to go to Scotland.
On our table there is a <ERR targ=sculpture> sculptor </ERR> <ERR targ=model> modal </ERR> this was made by Mrs Chalmers This is Just like a real <ERR targ=thing> think </ERR> .
this is a <ERR targ=model> modal </ERR> of a boy it is <ERR targ=standing> staning </ERR> on a block wood This was <ERR targ=modelled> malod </ERR> in clay not a whole <ERR targ=model> molad </ERR> Just the Head.
Swan upping
When they do this kind of <ERR targ=thing> think </ERR> they need <ERR targ=calmer> comer </ERR> waters.
they have to handle them very <ERR targ=carefully> caresll </ERR> They use small Boats <ERR targ=people> peolpe </ERR> think this is very <ERR targ=cruel> corller </ERR> to <ERR targ=catch> cash </ERR> them and put stamp on <ERR targ=their> there </ERR> wings, in this picture there is a man <ERR targ=carrying> carring </ERR> <ERR targ=one> on </ERR> out of the Boat its <ERR targ=Wings> Wing </ERR> are tied so that it can not <ERR targ=break> brick </ERR> the <ERR targ=man's> mans </ERR> arms, the <ERR targ=swans> swan </ERR> are <ERR targ=delicate> dellitent </ERR> <ERR targ=things> think </ERR>
<ERR targ=Poem> Pome </ERR>
one day the sun was out and up the stairs I went.
My mother in a temper, I spent my day in bed.
for fear of my mother I <ERR targ=daren't> darnt </ERR> go near.
For fear I <ERR targ=didn't> dident </ERR> get to see the sun,
There she lays So <ERR targ=quietly> quitely </ERR> there Waiting for the day People weeping waiting Sighing all the days <ERR targ=Their> There </ERR> hearts are weeping Crying so Hearts <ERR targ=beating> beting </ERR> so <ERR targ=rapidly> raperly </ERR>
LINDA <ERR targ=I'm> I </ERR> not going out tonight with him, I don't want to see him again.
<ERR targ=MARY> MARRY </ERR> Linda stop it and come out <ERR targ=here> hear </ERR> at once.
LINDA You can't <ERR targ=make> mack </ERR> me.
JOHN <ERR targ=What's> What </ERR> <ERR targ=wrong> wong </ERR> .
<ERR targ=MARY> MARRY </ERR> I told her that you were <ERR targ=taking> thaing </ERR> me <ERR targ=out> owt </ERR> at half past 12 <ERR targ=tonight> to night </ERR> JOHN You what.
<ERR targ=MARY> MARRY </ERR> Well I had to tell her JOHN Yes I suppose you did well <ERR targ=it's> it </ERR> not her <ERR targ=fault> falt </ERR> .
<ERR targ=it's> its </ERR> my <ERR targ=fault> falt </ERR> for <ERR targ=trying> traing </ERR> to be a pig.
<ERR targ=MARY> MARRY </ERR> mine too, still <ERR targ=you've> you </ERR> got the job of <ERR targ=choosing> ching </ERR> her or me, JOHN I think I had <ERR targ=better> bet </ERR> go home and think it out LINDA <ERR targ=there's> theres </ERR> nothing to think out I am through with you for good.
JOHN Linda wait LINDA <ERR targ=What's> What </ERR> the good of waiting for you is it.
Linda <ERR targ=slammed> slander </ERR> the door in his face.
JOHN hello Jean <ERR targ=can't> carnt </ERR> we <ERR targ=talk> tallk </ERR> it over and come to some <ERR targ=decision> disson </ERR>
JEAN Talk about what for <ERR targ=instance> instead </ERR>
JOHN Well make it up.
JEAN I am sorry John. <ERR targ=there's> theres </ERR> nothing to make up.
JOHN What do you mean; <ERR targ=There's> There </ERR> <ERR targ=no> on </ERR> one <ERR targ=else> eles </ERR> us is there.
JEAN Well what if there <ERR targ=is> us </ERR> <ERR targ=it's> its </ERR> got nothing to do with you
JOHN look I am only <ERR targ=trying> trining </ERR> to be nice
JEAN Well, don't JOHN all right <ERR targ=then> them </ERR> I won't be nice, it looks like I got to be <ERR targ=rough> rought </ERR> with you
JEAN if you lay a hand on me I will <ERR targ=scream> scem </ERR>
JOHN do you think that <ERR targ=scares> scards </ERR> me
JEAN well I <ERR targ=warned> wornd </ERR> <ERR targ=you> yew </ERR> didn't I JOHN I don't care what <ERR targ=you> yow </ERR> said.
<ERR targ=you> yow </ERR> just <ERR targ=want> whant </ERR> to <ERR targ=hurt> hert </ERR> me
JEAN no I don't you think you can <ERR targ=hurt> hert </ERR> me well <ERR targ=you're> yow </ERR> <ERR targ=wrong> rong </ERR>
JOHN I don't want to think of it
JEAN Well perhaps <ERR targ=you> yow </ERR> better not see me <ERR targ=any> eney </ERR> more
JOHN Don't be silly I want to see <ERR targ=you> yow </ERR> <ERR targ=tonight> to night </ERR>
JEAN I don't <ERR targ=know> no </ERR> about that
JOHN I see <ERR targ=you> yow </ERR> at 6 <ERR targ=o'clock> o, clock </ERR>
JEAN well all right then JOHN <ERR targ=You're> Your </ERR> a doll
JEAN I <ERR targ=don't> dont </ERR> <ERR targ=know> no </ERR> about that
JOHN Well I do
JEAN <ERR targ=goodbye> goodby </ERR> see you <ERR targ=tonight> to night </ERR>
<ERR targ=character> charickter </ERR>
<ERR targ=Their> There </ERR> parents David and Jill
It all started with a row with <ERR targ=their> there </ERR> parents,
JILL I am fed up with <ERR targ=you> yow </ERR> telling me <ERR targ=who> how </ERR> to go out with I am not a two year old I can make up my own mind without <ERR targ=asking> arsking </ERR> you what to do
PARENTS that will be enough from <ERR targ=you> yow </ERR> my girl or <ERR targ=else> els </ERR> <ERR targ=you'll> your </ERR> find <ERR targ=yourself> your self </ERR> in bed, I just had <ERR targ=enough> engouh </ERR> of you my girl,
JILL Well I am going to pack my bag and move out.
PARENTS If you move out <ERR targ=you'll> your </ERR> never come in this house again.
JILL Well <ERR targ=that's> thats </ERR> good <ERR targ=enough> engouh </ERR> for me, <ERR targ=I'll> I </ERR> be out in an hour.
PARENTS When you get out you can stay out
JILL <ERR targ=that's> thats </ERR> good.
Jill ran <ERR targ=upstairs> up stairs </ERR> to pack a case she came down, put on her coat and went out of the front door.
PARENTS <ERR targ=She's> She </ERR> not coming back in this house <ERR targ=whatever> what ever </ERR> <ERR targ=happens> happends </ERR> .
Jill went to her <ERR targ=boyfriend's> boyfrends </ERR> house, she rang the door bell David <ERR targ=opened> opend </ERR> the door.
DAVID What are you doing <ERR targ=here> hear </ERR> ? I was just coming round to your house to see if you could put me up for the night, I have had a row with my parents.
They told me to get out.
JILL <ERR targ=So> Show </ERR> <ERR targ=have> has </ERR> my parents.
DAVID <ERR targ=Let's> Lets </ERR> go and get married, <ERR targ=that's> thats </ERR> if you <ERR targ=want> whont </ERR> to married.
JILL Of course I do.
DAVID Well <ERR targ=let's> lets </ERR> go and get married then we can get a flat or <ERR targ=something> somethink </ERR> Well they got married and got a house.
They live <ERR targ=happily> happly </ERR> ever after.
The End.
5, Elmden Road Nr Melton 21 November Dear France, I thought I had better write to you telling <ERR targ=you> yow </ERR> what we do in English with Mr.
Holbrook, well we do a lot of writing such as story and letter, so that it helps when we leave school.
It helps speak properly when we leave school.
Love Joan.
3.
GEORGE GREEN page 62
A <ERR targ=story> stors </ERR> The BlinD Date People
Rex harrison <ERR targ=works> work </ERR> at visor television <ERR targ=factory> factoy </ERR> Jean smith also <ERR targ=works> wors </ERR> at <ERR targ=?> nsor </ERR> Audrey <ERR targ=Watson> watston </ERR> <ERR targ=works> wonrs </ERR> at the <ERR targ=greenhouse> gnenhouen </ERR> in Melton.
Jean said to Audrey has a sweet and Audrey said to Jean we are This Rex is is <ERR targ=excited> exited </ERR> and Jean and Rex <ERR targ=went> wetn </ERR> <ERR targ=to> two </ERR> the house of <ERR targ=His> He </ERR> <ERR targ=mother> mouthr </ERR> and Rex said to Jean is it my house and Jean <ERR targ=said> sald </ERR> to Rex it is a <ERR targ=?> nis </ERR>
The <ERR targ=sneaking> sneking </ERR> gang are dangerous and a <ERR targ=teddy boy> tedeboy </ERR> went in the shop and the <ERR targ=sneaking> sneking </ERR> gang went <ERR targ=to> two </ERR> the shop <ERR targ=waited> wated </ERR> for the <ERR targ=teddy boy> tedeboy </ERR> and the <ERR targ=teddy boy> tedeboy </ERR> <ERR targ=came> kom </ERR> out of the shop and hit a old man <ERR targ=outside> out sild </ERR> of the shop and the <ERR targ=sneaking> sneking </ERR> gang got the <ERR targ=Teddy boy> Tedeboy </ERR> and three of sneaking gang the <ERR targ=teddy boy> tedeboy </ERR> .
The Sick Sow.
<ERR targ=One> Won </ERR> day The Sow was sick and the old <ERR targ=farmer> frm </ERR> went <ERR targ=for> four </ERR> the <ERR targ=vet> vethn </ERR> and the old sow <ERR targ=wasn't> whdn't </ERR> not <ERR targ=healthy> hethy </ERR> <ERR targ=and> an </ERR> <ERR targ=fit> fanit </ERR> and the old <ERR targ=farmer> frm </ERR> <ERR targ=said> sidn </ERR> to <ERR targ=vet> vethn </ERR> the old sow is <ERR targ=unhealthy> on hethy </ERR> so the <ERR targ=vet> vethu </ERR> <ERR targ=said> sidn </ERR> to the <ERR targ=farmer> frmh </ERR> I will <ERR targ=come> kumh </ERR> and see.
the <ERR targ=old> lod </ERR> sick sow <ERR targ=said> sidn </ERR> the <ERR targ=vet> vethn </ERR> and the <ERR targ=farmer> frmh </ERR> went <ERR targ=to> two </ERR> see the <ERR targ=old> lod </ERR> sick sow and the <ERR targ=vet> vethn </ERR> and the <ERR targ=farmer> frmh </ERR> see <ERR targ=old> lod </ERR> fat sick sow <ERR targ=said> sidn </ERR> the <ERR targ=farmer> frmh </ERR> and went at the <ERR targ=farm> frm </ERR> and not the <ERR targ=farmer> frmh </ERR> <ERR targ=out> ouht </ERR> the big fat sick sow went and <ERR targ=laid> ladh </ERR> down the <ERR targ=farmer> frmh </ERR> went <ERR targ=too> two </ERR> with the big fat sick sow and saw <ERR targ=behind> behism </ERR> and the <ERR targ=farmer> frmh </ERR> .
went in <ERR targ=his> he </ERR> house and he sat down and he <ERR targ=?> bav </ERR> he and sick sow went <ERR targ=two> to </ERR> <ERR targ=lay> ladh </ERR> down and the <ERR targ=vet> vetin </ERR> went and the <ERR targ=vet> vent </ERR> see <ERR targ=what> wat </ERR> is <ERR targ=wrong> ron </ERR> <ERR targ=with> wis </ERR> and the sick sow went to <ERR targ=sleep> seph </ERR> and the <ERR targ=vet> vethn </ERR> went <ERR targ=to> two </ERR> the <ERR targ=farmer's> frmh </ERR> house and sick sow the <ERR targ=vet> vethn </ERR> to the <ERR targ=farmer> framh </ERR> and the <ERR targ=vet> vethn </ERR> <ERR targ=said> sidn </ERR> <ERR targ=to> two </ERR> the old big fat sick sow is <ERR targ=asleep> a seph </ERR> and the sick sow not the <ERR targ=vet> vethn </ERR> and <ERR targ=farmer> frmh </ERR> run and run up <ERR targ=?> sechrus </ERR> and the sick sow went to the <ERR targ=pigs'> pigs </ERR> house and <ERR targ=laid> ladh </ERR> down and went <ERR targ=sleep> seph </ERR> and the <ERR targ=farmer> frmh </ERR> hot <ERR targ=vet> vethn </ERR> and went <ERR targ=back> bakh </ERR> to Melton and <ERR targ=farmer> frmh </ERR> <ERR targ=went> weth </ERR> to see see sick sow and he <ERR targ=?> ruth </ERR> <ERR targ=?> humit </ERR> and sick old sow <ERR targ=woke> wok </ERR> up and old sow is <ERR targ=better> beththe </ERR> <ERR targ=End> And </ERR>
the beheading : Good people all, I pray you now behold Our old Fool's bracelet is not made of gold But it is made of iron and good steel And unto death we'll make this old Fool yield.
FOOL: I pray, forbear, my children small For as I am lost as parent to you all, O let me live a while your sport for to advance That I may rise again and with you have a dance.
They sing Now, old father, that you know our will That for your estate we do your body kill Soon after death the bell for <ERR targ=you> your </ERR> shall toll, And wish the Lord he may receive your soul THEN the fool falls down, and the dancers with their swords in their <ERR targ=hands> hand </ERR> , <ERR targ=sing> sings </ERR> the following song.
Good people all you see what we have <ERR targ=done> don </ERR> We have cut down <ERR targ=our> ous </ERR> father like <ERR targ=the> ge </ERR> evening <ERR targ=sun> son </ERR> <ERR targ=And> Ane </ERR> here he lies all in his purple gore And we are afraid he never will dance more
NOVEMBER 11 1960 The sneaking went to the Pub and a pint of brown and went out of the Pub and went round the corner to the shop and see <ERR targ=Teddy boy> Teddoy </ERR> <ERR targ=start> starte </ERR> <ERR targ=trouble> troefle </ERR> and the sneaking went the <ERR targ=teddy boy> teddoy </ERR> and the <ERR targ=Teddy boy> Teddoy </ERR> running up and down the streets and the sneaking went <ERR targ=round> rownd </ERR> the corner to see the <ERR targ=Teddy boy> Teddoy </ERR> on the .
15 NOVEMBER 1960 The Redex Jack O'Malley: Boss George Green 2 Head John Young 2 head went <ERR targ=to> two </ERR> the <ERR targ=pictures> pictyres </ERR> and hit the <ERR targ=manager> maneger </ERR> and he went down the <ERR targ=stairs> stars </ERR> and hit a <ERR targ=woman> women </ERR> and <ERR targ=she> he </ERR> fainted We home.
The end of the story.
15 NOVEMBER THE POEM OF THE OLD women
My old man a he Old women <ERR targ=?> Hurbured </ERR> she
29 NOVEMBER 1960
I am a man 6 ft tall he <ERR targ=landed> laded </ERR> in the <ERR targ=kitchen> kitching </ERR> ft in the hall
The School.
The school in the <ERR targ=meadow> meadoy </ERR> a school the road a man the <ERR targ=confide> cornfield </ERR> where <ERR targ=daffodils> daffodill </ERR> do grow.
The House of Love The man is a policeman and he to the house of house love and he went in a man <ERR targ=?> crowsed </ERR> the <ERR targ=head> hed </ERR> and the policeman went down on the floor and house of love <ERR targ=was> wos </ERR> haunted and the police went to the haunted house of love and police got the man in house of love the end
The <ERR targ=teddy boys> teddyboys </ERR> are a <ERR targ=big-headed> Big haded </ERR> and Police <ERR targ=want> wat </ERR> to get a grip of the <ERR targ=Teddy boys> Taddyboys </ERR> and see <ERR targ=about> a Bat </ERR> the <ERR targ=knife> kniffe </ERR> of the <ERR targ=shop> shap </ERR> at the <ERR targ=cafe> kiffe </ERR> and <ERR targ=to> two </ERR> see the shop keeper and to tell the shop keeper not <ERR targ=to> two </ERR> not to give the <ERR targ=teddy boys> teddyboys </ERR> <ERR targ=knife> kiffe </ERR> .
They are <ERR targ=too> two </ERR> <ERR targ=dangerous> dangers </ERR> and <ERR targ=they> the </ERR> murdered and we are <ERR targ=trying> try </ERR> to stop.
Apple, Apple, on the tree Can you come and please me ? If you can you will be The sweetest apple on the tree.
The stolen Goods On Saturday Tom took a lorry up to London and the Police <ERR targ=car> Star </ERR> stopped Tom and a arrested Him and they took him to the Police Station and <ERR targ=questioned> question </ERR> Him and he went to prison for 7 years
THE <ERR targ=End> ANd </ERR>
The MAN <ERR targ=died> ded </ERR> On Monday a old man went to the old club and not man went see <ERR targ=him> hm </ERR> shot <ERR targ=himself> his self </ERR>
THE <ERR targ=End> ANd </ERR>
The ship Tony went on the queen Mary on him met James and Phil and I went to see the Q liner
13 JANUARY The <ERR targ=story> hio </ERR> The Thieves At Monday I went to the Car Park and see a man <ERR targ=steal> still </ERR> a car and went to fetch the cops and the <ERR targ=cops> caps </ERR> went to the Car Park and the man went out of the Car Park <ERR targ=and> an </ERR> the <ERR targ=cops> caps </ERR> went to the cops station and I went London I see went up the pipe and went to the pipe and shook the pipe and the man <ERR targ=came> kum </ERR> down the cops come to the man and arrested
The <ERR targ=End> And </ERR>
13 JANUARY The <ERR targ=story> shio </ERR> of the Jap Case On Monday I see Jap case taking bike and went to the shop and taking a bowl <ERR targ=sweets> swet </ERR> went on bike and the police <ERR targ=was> wos </ERR> <ERR targ=waiting> waten </ERR> for Jap Case and Jon case was arrested and the case on Friday and Jap Case was <ERR targ=guilty> guilt </ERR> of taking a bike and He 7 Jail
THE <ERR targ=End> ANd </ERR>
The down gang Saturday the down gang went to the cafe and hit the old man and the cafe man went to ring the <ERR targ=police> polic </ERR> and the <ERR targ=police> polic </ERR> <ERR targ=came> cam </ERR> to the cafe and the down gang beat the <ERR targ=police> polic </ERR> and the down gang run for it a police car caught and the down gang got 7 years in jail and he wife <ERR targ=went> wen </ERR> to <ERR targ=see> se </ERR> <ERR targ=her> She </ERR> husband in Jail and warder in jail house <ERR targ=went> wen </ERR> to he husband and told <ERR targ=it> she </ERR> is <ERR targ=time> tim </ERR> you went said the warder and she went home and he did not <ERR targ=come> coum </ERR> home.
The <ERR targ=End> And </ERR> .
THE Murder hunt In the day man and a girl went in <ERR targ=to> two </ERR> a cafe and man and girl never come out of the cafe and the old <ERR targ=man> mae </ERR> and girl went to a walk and the old man murder and he went home and mother father went <ERR targ=to> two </ERR> the police and the <ERR targ=Police> Pollce </ERR> went in the cafe and the police said to the man at the counter <ERR targ=did> ded </ERR> you serve girl and <ERR targ=old> lod </ERR> man yes the man at the counter thank and the police went <ERR targ=for> four </ERR> walk and the police found the girl <ERR targ=murdered> murbur </ERR> <ERR targ=murder> murber </ERR> hunt the found the mat died
The <ERR targ=End> And </ERR>
25 JANUARY The <ERR targ=story> shio </ERR> <ERR targ=tramps> trmp </ERR> I went to work and I see a <ERR targ=tramp> trmp </ERR> Walking up the <ERR targ=road> rod </ERR> and I went to see the <ERR targ=tramp> trmp </ERR> and I said to the <ERR targ=tramp> trmp </ERR> <ERR targ=what> wat </ERR> do you <ERR targ=want> woth </ERR> I <ERR targ=said> sald </ERR> the old <ERR targ=tramp> trmp </ERR> The rotter school teacher name is Mr. HoLBook he is a tramp he needs a wash and a haircut and a new shirt and he has a big head and beady <ERR targ=eyes> eyey </ERR> I went up heath and I see a old man with a gun and I run down the hill and old man chase you and <ERR targ=he> the </ERR> is gaining my and I <ERR targ=followed> fellowed </ERR> and I was on the side the road and <ERR targ=said> sid </ERR> to an Irish stop the man from shooting you and the Irish hit him knocked him out and went <ERR targ=home> hom </ERR> and sat down Bill <ERR targ=said> sid </ERR> to man do you want a fag and <ERR targ=said> sid </ERR> yes went out
The <ERR targ=End> And </ERR>
In 19 January 29 a murder on the A 10 a young boy in the road coppers went along the road and see the young boy in road and the coppers identify the boy he was John Easter the sergeant
30 MAY 1961 THE GiRL is <ERR targ=locked> lockEd </ERR> in An Attic The missing girl was found in a attic the Lady went down the <ERR targ=road> rad </ERR> got to <ERR targ=man> manh </ERR> and she rung the police station and the fire brigade and the fire <ERR targ=man> manh </ERR> smashed a window and the girl is safe and the <ERR targ=man> mand </ERR> who might able to help them <ERR targ=his> he </ERR> name is John Smith sandy hair and he is driving a <ERR targ=standard> stardnd </ERR> <ERR targ=ten> tan </ERR> XTV 212 If anybody see it please ring Scotland <ERR targ=Yard> Ysid </ERR> Whitehall 1212
The <ERR targ=End> And </ERR>
<ERR targ=Tom's> Toms </ERR> rotten house Tom Sullivans house <ERR targ=stinks> sticks </ERR> and his chairs have holes in them his <ERR targ=mother> morther </ERR> is a fat pig his dad is <ERR targ=trashy> tashie </ERR> and Tom Sullivan wears baggy trousers like old somerset people.
I see a hare running down the <ERR targ=field> fed </ERR> and I see a <ERR targ=fish> fsh </ERR> sticklebacks in the down in the water and a wild rose in the hedge and rook up in the <ERR targ=air> hare </ERR> I see a <ERR targ=water-rat> waterrat </ERR> it went in a hole in the bank.
And I see a dead rook and we climbed over a willow tree and walk down the <ERR targ=field> fed </ERR> and walk back <ERR targ=to> two </ERR> the <ERR targ=school> shool </ERR> .
Hare hare <ERR targ=come> com </ERR> to me or else I kick up a tree fish sticklebacks in the <ERR targ=sea> see </ERR> I will sticklebacks out of the <ERR targ=sea> see </ERR> or you can pull me in the <ERR targ=sea> see </ERR> and I swam in the <ERR targ=sea> see </ERR> .
A rook has a long beak and a big head and long wings and big <ERR targ=feet> fet </ERR> and the colour is black and in the sun is it blue.
The of old man I come out of the old man house and run down the road <ERR targ=to> two </ERR> the telephone ring John and <ERR targ=Porky> Paulkey </ERR> and James and I went up the road <ERR targ=to> two </ERR> the old man house and Paulkey and John and James and John has a gun and we threaten and the old man is bleeding John went to get a doctor and <ERR targ=he> the </ERR> went ring the hospital and the <ERR targ=ambulance> amblance </ERR> come and the old man went <ERR targ=to> tow </ERR> hospital and the gang went <ERR targ=to> two </ERR> see the old man he is <ERR targ=dying> dieing </ERR> and The boy went <ERR targ=home> homse </ERR> and the old man died
A cat run <ERR targ=to> two </ERR> the <ERR targ=door> boor </ERR> and sat on the mat a dog see the cat and cat see the dog and cat ran <ERR targ=to> qu </ERR> the <ERR targ=wall> molh </ERR> and he the <ERR targ=roof> rhfn </ERR> of a house and down <ERR targ=chimney> cimbenr </ERR> and out of the <ERR targ=fire> fiar </ERR> and old man <ERR targ=jumped> jumth </ERR> out of <ERR targ=his> he </ERR> <ERR targ=seat> sat </ERR> and the cat ran <ERR targ=over> ove </ERR> the mat and dog run <ERR targ=out> ou </ERR> <ERR targ=to> two </ERR> the door the cat run up the <ERR targ=wall> wah </ERR> <ERR targ=to> two </ERR> <ERR targ=the> he </ERR> house ran in the and and sat on the mat.
the cat sat on the mat.
A boy of 18 <ERR targ=went> wens </ERR> in the <ERR targ=army> hrmehr </ERR> and <ERR targ=didn't> denat </ERR> <ERR targ=like> lichr </ERR> the <ERR targ=army> hrmehn </ERR> and went on <ERR targ=leave> lefnr </ERR> and he <ERR targ=didn't> dednt </ERR> not <ERR targ=come> comr </ERR> <ERR targ=douche> back </ERR> and 14 day went <ERR targ=by> bihr </ERR> the <ERR targ=captain> cpn </ERR> <ERR targ=said> sedn </ERR> to James Carr has not come <ERR targ=back> doc </ERR> <ERR targ=yet> yeth </ERR> go the he <ERR targ=down> dus </ERR> <ERR targ=?> unz </ERR> sun <ERR targ=road> rod </ERR> <ERR targ=London> Londod </ERR> .
The Gate house Melton
Dear Mr. T.,
Mr holbrook is a better teacher than you <ERR targ=think> thank </ERR> and I <ERR targ=think> tink </ERR> your Idea is stupid and I do not like your <ERR targ=idea> ida </ERR> <ERR targ=yours> yourns </ERR> sincerely George Green
two clowns in a <ERR targ=circus> sercus </ERR> ring playing <ERR targ=around> a round </ERR> with a old cat some drunk water hoses <ERR targ=pointing> pooting </ERR> it over each other the crowd laughing at them A saw mill with cows in the back <ERR targ=meadow> medow </ERR> A police car coming along the <ERR targ=road> raod </ERR> with its <ERR targ=siren> satren </ERR> going and men <ERR targ=hammering> hemmsering </ERR> <ERR targ=many> meny </ERR> <ERR targ=metals> metet </ERR> <ERR targ=or> ot </ERR> tin A band playing in a <ERR targ=dance> dane </ERR> hall and <ERR targ=young> yung </ERR> <ERR targ=peep> peope </ERR> <ERR targ=dancing> pncing </ERR> to it It sounds like <ERR targ=?> anetes </ERR> <ERR targ=got> gnt </ERR> killed
4.
JOHN YOUNG page 77
my family
<ERR targ=There> They </ERR> are 6 of us my <ERR targ=dad's> dads </ERR> the oldest my <ERR targ=mum's> mums </ERR> the second oldest.
my oldest sister is 22 and <ERR targ=married> marrede </ERR> with 1 child of 3 <ERR targ=months> month </ERR> .
my second sister is 18 and she worked for the mobile blood-transfusion centre she has a flat at Michems corner Tonbury my third sister is 16 and works at the milk <ERR targ=company> coperney </ERR> Tonbury and shares the flat with my other sister.
I live at Elmden on a farm... As I am the youngest <ERR targ=person> peason </ERR> in the family I get <ERR targ=picked> picted </ERR> on for a lot of things here is a E.G.
when we are all watching T.V.
dad <ERR targ=says> sais </ERR> make a cup of tea mum.
mum <ERR targ=says> seis </ERR> Doris you make a cup of tea.
Doris <ERR targ=says> sais </ERR> peggy you make a cup of tea peggy <ERR targ=says> sais </ERR> <ERR targ=Sylvia> sylver </ERR> you make it.
<ERR targ=Sylvia> Sylver </ERR> <ERR targ=says> sais </ERR> John you make it.
So as I am the youngest and have <ERR targ=no one> now one </ERR> younger to pick on so I have to make the tea.
People are a funny lot some are nice, some are not some will help you, some won't bother, but there is one I like and <ERR targ=that's> thats </ERR> my mother.
<ERR targ=Macwilliams> macwillaims </ERR> ran to a brick wall he began to climb it when he got to the top of the guard room then he heard the other guard coming he <ERR targ=pulled> pull </ERR> a knife out of his pocket <ERR targ=which> witch </ERR> he stole from the <ERR targ=kitchen> kichen </ERR> he <ERR targ=threw> frow </ERR> it at the guard it dug into his arm and he but he was still strong he pulled out his truncheon and hit <ERR targ=Macwilliams> macwillaims </ERR> in the face he fell <ERR targ=forward> forword </ERR> off the roof he fell to the ground head first he hit the ground with an <ERR targ=almighty> almity </ERR> thud he broke his head and <ERR targ=died> diad </ERR>
The Jordan family were once a happy crowd.
The family of six <ERR targ=lived> lifd </ERR> in a <ERR targ=council> counsel </ERR> house Just <ERR targ=outside> out side </ERR> <ERR targ=London> Londen </ERR> But something <ERR targ=went> whenet </ERR> wrong.
Mother and father were always shouting at each other the people across the street could hear them <ERR targ=fighting> figthing </ERR> the children would cry Tommy was the oldest he was 12 he was more <ERR targ=grown> groon </ERR> up that than the others.
Jane was 8 she was frightened of her mum and dad <ERR targ=Joan> Jone </ERR> was 5 and Alan 1 1/2 years.
He was <ERR targ=too> to </ERR> young to to understand he was crying all the time <ERR targ=nevertheless> never the less </ERR> .
It happened to me When I was 4 years old I very nearly <ERR targ=died> diad </ERR> .
It was one sunday when my 3 older sisters and I were out for a walk I had my photo taken near a brook.
I still have the photo.
The brook was about 8 feet wide.
The water was about 2 feet deep.
But <ERR targ=there> they </ERR> was 6 feet <ERR targ=of> off </ERR> wet slimy mud I was the first to cross the bridge it broke and in I went.
I <ERR targ=slowly> slolly </ERR> sank in the mud my 2 youngest sisters ran home but my oldest sister <ERR targ=stopped> stoped </ERR> and saved my life she held my head above water <ERR targ=until> untill </ERR> my sisters got home and told my parents.
then they raced down to the brook dad <ERR targ=had> have </ERR> a hell of a Job pulling me out as the mud held me down eventually <ERR targ=he> his </ERR> got me out and <ERR targ=carried> carred </ERR> me home.
my clothes had to <ERR targ=be> me </ERR> <ERR targ=destroyed> distrod </ERR> it took seven <ERR targ=baths> bath </ERR> to get me <ERR targ=clean> clearn </ERR> .
<ERR targ=I'm> Im </ERR> am never <ERR targ=allowed> alloud </ERR> to sit up and watch <ERR targ=programmes> programes </ERR> not <ERR targ=suitable> surtebull </ERR> for children one night when dad was digging the garden mum had gone out, <ERR targ=there> they </ERR> was a film on TV <ERR targ=unfit> unfitt </ERR> for children I sat and watched it, it was all murder and killing, men were being hung and <ERR targ=others> other </ERR> were being shot or <ERR targ=stabbed> stabed </ERR> .
men had their heads cut in half .
My work on a farm I have live on a farm all <ERR targ=of> off </ERR> my life, I am not <ERR targ=boasting> bosting </ERR> but I think I know a fair bit about farming.
I know most about cattle and only a little about machinery.
Some people say farming is the lowest <ERR targ=paid> payed </ERR> and hardest working <ERR targ=employment> imployment </ERR> out.
I agree with those people.
but I would rather work for my living, than just <ERR targ=sitting> siting </ERR> in a <ERR targ=stuffy> stufy </ERR> old office adding up numbers all day or whatever they do.
Give me the open air life.
My father is a farm stockman and I hope to take on the same Job when I leave school.
I am going to take my <ERR targ=apprenticeship> apprentiship </ERR> course when I leave at easter.
that means that I go to <ERR targ=classes> classis </ERR> <ERR targ=once> ones </ERR> a week.
I will learn a lot more about farming and if I pull through the course I will be a <ERR targ=useful> usfull </ERR> chap about the farm.
<ERR targ=While> Will </ERR> I am taking my course I will be <ERR targ=getting> get </ERR> 17 <ERR targ=shillings> shilling </ERR> less than the boy worker that is not taking the course.
But when I am 17 and finished my <ERR targ=Apprenticeship> Apprentiship </ERR> I will get 10% more than the average pay <ERR targ=of> off </ERR> a boy my age.
Many people asked me why I have <ERR targ=chosen> choosen </ERR> farming as my future <ERR targ=career> carrer </ERR> .
(1) I will be in the open air.
(2) I will be doing a <ERR targ=different> diffrent </ERR> Job every day (3) I am not interested in <ERR targ=anything> enthing </ERR> else.
For the last 2 or 3 years I am have been <ERR targ=working> work </ERR> on the farm in the holidays.
And I can tell the men I have worked with have been good and <ERR targ=given> give </ERR> me a few tips.
my dad has told quite a lot about farming which I know will help when I <ERR targ=leave> life </ERR> school.
So if anybody <ERR targ=wants> want </ERR> an open air life, choose FARMING
5.
ANN BARLEY page 81
Dear Rose
I hope you are alright.
I am writing to tell you about my English I have done with Mr David Hollbrook.
He is <ERR targ=always> all ways </ERR> making me write letters or stories.
I know English will <ERR targ=do> done </ERR> me more good when I leave school.
But <ERR targ=sometimes> some thime </ERR> I get very bored.
Mind you I'm not very good at English but I try.
Love and Best Wishes Ann
Dear Mr Hollbrook, I hope you will soon get better and come back to school and teach us Have you marked the Exams papers.
I hope this letter will cheer you up.
All the class were sorry to hear you had flu.
Well soon get better <ERR targ=yours> you </ERR> sincerely Joan Stall and Ann Barley 3C
My family
<ERR targ=There> They </ERR> are eight in my family two boy and four girl <ERR targ=and> a </ERR> one mum and one dad I have one sister engaged she will not get married yet because she is only 17 years old she has a boy from Melton His name is Michael Coote and he is 19 My dad works on a farm and one of my <ERR targ=brothers> brother </ERR> works in a garage and the little one goes to the primary school Bridgebrook one of my <ERR targ=sisters> sister </ERR> <ERR targ=comes> come </ERR> to the college and one at the primary.
my biggest one works at the Handsome <ERR targ=?> Half-hose </ERR> my brother and sister which goes out to, work go at 7 in the morning and come home at 7 at night.
My dad <ERR targ=likes> like </ERR> a good meal when he comes on from the farm and so does my sister and brother like a good meal when the kids get home from school we have a cooked meal and then we watch children's hour
My life when I leave school When I leave school I would to work in a bookbinding at Tonbury where all nice boys.
I should like to get married when I am 20 and have two children And a nice handsome husband with nice <ERR targ=wavy> wavey </ERR> hair and a nice big house I would not like to have argument with my husband and always talk nice to him and he talk nice to me.
I should not like a fast <ERR targ=boyfriend> boyfrend </ERR> like some of the girls.
I would like one nice and steady.
When I have my children I would leave the book binding and look after the children.
I would marry a man who likes children not a man that <ERR targ=hates> hate </ERR> children.
I should like twins two of each or one of each.
I should like to get married in a white gown and carry a <ERR targ=prayer-book> prayerbook </ERR> have two big bridesmaids and two little bridesmaids and one pageboy.
I would like to dress my children in the same <ERR targ=colour> colur </ERR> <ERR targ=clothes> colhes </ERR> I should like a boyfriend with a car so that we cane go out for ride.
I like to go on holiday to the seaside and a honeymoon Touring all round the place.
The End.
Poem 1 One, two, three, four, As I am counting up the shore Of course the shore is at the sea, One, two, four, three .
Two large birds Sat on a fence, And they heard They were <ERR targ=dense> dence </ERR>
TWO PEOPLE <ERR targ=CHARACTERS> CHARTORS </ERR> Jean Joyce
SCENE I Two teenager girls at the top of the village when a boy comes along and <ERR targ=asks> ask </ERR> them for a date at seven O'clock.
The <ERR targ=boy's> boys </ERR> name is John seagull.
The two girls are mucking about on the top road.
The boy was going by on a motor bike.
He stops and leans his motor bike by the shelter wall and said "Why was you playing on the road, <ERR targ=haven't> haven's </ERR> you got a boyfriend" (he said it to Joyce because she was the <ERR targ=prettiest> prettest </ERR> ) and Joyce said "No I haven't got a boyfriend boyfriend" The boy said "oh" Do you want to come out with me because I haven't got a girl friend," this was about 3.
30 one Sunday afternoon.
in the winter.
The boy said "shall we go for a walk.
Joyce still hadn't <ERR targ=answered> anwerd </ERR> his question.
So he <ERR targ=asked> ask </ERR> <ERR targ=her> he </ERR> again.
So Joyce said I would like to.
Now I will have something to do in the evening.
Joyce said I am glad I am going out with you because it was boring sitting at home in the evening doing nothing.
Jean already had a boyfriend she was waiting for her boyfriend to come he has a car.
Joyce said <ERR targ=here> hear </ERR> <ERR targ=comes> come </ERR> Roy Jean.
John said.
" <ERR targ=Whoever's> Whos evers </ERR> Roy, Joyce said that is <ERR targ=Jean's> jeans </ERR> boyfriend.
They never did go for a walk.
Joyce said shall we go home John said "if you like and so they went home Joyce said to Jean see you tonight." <ERR targ=Cheerio> Cheere ho </ERR> for now.
Joyce has no brothers or sisters.
<ERR targ=Joyce's> Joyce </ERR> <ERR targ=parents> prarents </ERR> said <ERR targ=whoever's> who evers </ERR> this with Joyce.
Joyce introduced John to her <ERR targ=parents> prerents </ERR> they said glad to meet you.
John said shall we <ERR targ=go> do </ERR> to the <ERR targ=pictures> picture </ERR> .
Joyce said yes can Roy and Jean come if you want so Joyce and John <ERR targ=walked> walk </ERR> down the road to <ERR targ=Jean's> Jeans </ERR> house.
<ERR targ=he> the </ERR> asked Jean and she said yes please.
So Roy said shall we go in the car.
So they said if you like, "John said I will pay for you to go to the pictures.
<ERR targ=Roy> Roys </ERR> said "What time are we going.
John.
said well the pictures starts at 6.30 and ends at 10.30 so if we go about 6. <ERR targ=o'clock> O clock </ERR> that will be alright.
They had <ERR targ=their> they </ERR> tea and when it was time to go they said <ERR targ=cheerio> cheeroh </ERR> <ERR targ=don't> want </ERR> be late.
They got to the pictures they got out of the car and went through the picture door they paid <ERR targ=the> they </ERR> man: they sat down and the film started.
They put <ERR targ=their> there </ERR> arms around each other and John said will you kiss.
Joyce said if you like.
it was the end of the film they just walked out and <ERR targ=got> go </ERR> into the car.
Jean said what did you think of the film you two.
they said it <ERR targ=wasn't> wasnt </ERR> too bad what did you think of it.
Jean said.
"I really enjoyed <ERR targ=myself> my shelf </ERR> .
They <ERR targ=stopped> stop </ERR> outside <ERR targ=Joyce's> Joyce </ERR> house.
John went and had some supper.
And then he went home.
Joyce kissed him Goodnight and he kissed her Goodnight.
and then he went on his <ERR targ=Motorbike> Motor-bikes </ERR> .
When he got home he told his Mother and father that he had a beautiful girlfriend So <ERR targ=they> there </ERR> said "you will have to bring her to show us.
Joyce said alright.
I will bring her tomorrow.
So John told her the next <ERR targ=night> tonight </ERR> and Joyce said I would love to meet your parents.
So they <ERR targ=went> sent </ERR> <ERR targ=over> ove </ERR> <ERR targ=John's> John </ERR> House.
John <ERR targ=introduced> introducted </ERR> Joyce to her Mother John Mother said Glad to Meet you, and then his father he said the same.
they started to talk and and <ERR targ=decided> dicide </ERR> to get engaged and <ERR targ=Married> Marrid </ERR> the <ERR targ=special> spicil </ERR> is March 4th 1961.
and <ERR targ=the> they </ERR> engagement is Dec 25th 1960.
On Christmas day.
<ERR targ=Their> There </ERR> <ERR targ=engagement> enagement </ERR> soon came.
They are <ERR targ=engaged> enaged </ERR> now.
Many People gave them wedding presents John kept the <ERR targ=presents> present </ERR> at his house.
but he got <ERR targ=too> two </ERR> many that Joyce had to go keep some of them because John had no more room.
The day came and for <ERR targ=the> they </ERR> wedding John arrived first and then Joyce when Joyce got up to John they both <ERR targ=walked> walk </ERR> up to the steps.
The wedding is over they had <ERR targ=their> they </ERR> photos.
taken and they went to the hall and had <ERR targ=their> they </ERR> party.
And the People all said Congratulations to you two they both said Thank you.
They <ERR targ=decided> decider </ERR> to have two <ERR targ=children> chidren </ERR> .
The End.
Pop star My best pop singers are Cliff Richard and Adam Faith and Mark Wryer.
The song I like Cliff to sing is Falling in love and <ERR targ=Adam's> Adam </ERR> best song is <ERR targ=what> want </ERR> do you want if you <ERR targ=don't> don </ERR> want money and I have not heard Mark sing yet The best group are the Beverly sisters and the Everly Brothers Cliff and Adam and Mark are not married.
I don't know about the <ERR targ=beverley> beverly </ERR> <ERR targ=sisters> sister </ERR> and Everly brothers I <ERR targ=know> no </ERR> two of the <ERR targ=beverley> beverly </ERR> sisters are married the tallest <ERR targ=beverley> beverly </ERR> sister is married to Billy Wright the football player.
But I don't know who the other is married to .
As I looked at this picture it made me think the people were <ERR targ=drunk> druck </ERR> .
The people throw the <ERR targ=things> thinks </ERR> on the floor.
The woman put the baby in the chair in the corner so that they can have a sleep.
They opened the window to let the fresh air in.
This picture <ERR targ=was> we </ERR> <ERR targ=painted> panted </ERR> in the olden days.
It was dark in the house but not <ERR targ=outside> out side </ERR> .
It looks to me as if it was raining.
The dog is licking up the scraps.
The bird is up in his cage wondering what is <ERR targ=happening> happing </ERR> .
Look at the old <ERR targ=fashioned> fashion </ERR> shoes.
<ERR targ=Their> They </ERR> socks come up to the top of <ERR targ=their> they </ERR> legs like long <ERR targ=grandpa's> grandpas </ERR> pants.
One of the children are playing with the fire.
When a woman looks in her Pram
One day a young woman went down the street to do her shopping.
She went into the shop to order her weekly meat, of course she left her baby <ERR targ=outside> out side </ERR> the shop.
Her baby was still sitting her its pram, but the little baby was crying.
the little baby could not talk much he could say little words.
<ERR targ=His> He's </ERR> Mum said to him "Now what are you crying for My little baby, "he keep on "Man, Man,", he <ERR targ=meant> mean't </ERR> that Man which were going down the road, at first she could not understand him you see this man had a black baby in a blue pram And a woman came over the road <ERR targ=and> a </ERR> said "you better watch <ERR targ=where> were </ERR> you leave <ERR targ=your> you </ERR> baby misses." the baby's <ERR targ=mother> mothers </ERR> said "why" so the other lady" said, "because you know that old man which <ERR targ=has> as </ERR> Just gone down the road, well he tried to take your little baby out of <ERR targ=its> it's </ERR> pram.
So she said "thank you very much for telling me, and said "goodbye So the lady <ERR targ=walked> walk </ERR> on with her baby.
This time she went into the baker's to get some bread.
The old man with the baby was outside the fishmonger, which was just aside the baker's.
The Lady went in, and while she was in the man changed <ERR targ=babies> babys </ERR> .
So he had the white one and she had the black one, of course he ran away, no one saw him.
She came out of the Baker's and looked in her pram a saw the baby asleep.
She went home <ERR targ=and> a </ERR> while the baby was <ERR targ=asleep> a sleep </ERR> she done some jobs.
When she had done her jobs she said to herself "the <ERR targ=baby> babys </ERR> is having a long sleep.
I go and see if he is still asleep.
She opened the <ERR targ=door> down </ERR> and she <ERR targ=saw> sow </ERR> a black baby sitting in her pram she shouted.
after she had shouted she put on her coat and went and <ERR targ=phoned> phone </ERR> the police.
The police said they would be here in a very few <ERR targ=minutes> minetes </ERR> .
As soon as she had a knock on the door, she said "Come in," it was the policemen.
The police said, "What can we do for you Miss.
So she said "This is not my baby I had a white one so the police said when did you first find out she said just a minute ago.
Just before before I phoned you.
One of the police said "did you leave it <ERR targ=outside> out side </ERR> a shop, and she said "yes while I went in the baker's .
(she was crying) The other policeman said.
"tell us the whole story" So she told them to sit down <ERR targ=and> aud </ERR> asked them if they wanted a cup of tea they said yes.
So she put on the kettle and then sat down and told <ERR targ=them> then </ERR> the story about her baby.
And the police said they would try and find her own baby.
The very long days went by and still they couldn't find the baby, but <ERR targ=after a while> afterawhile </ERR> the police heard a little about the baby.
The <ERR targ=woman> women </ERR> was very upset.
And one day the two <ERR targ=policemen> polce men </ERR> came to her house holding a white baby.
So the <ERR targ=woman> women </ERR> <ERR targ=grabbed> grab </ERR> the baby and said thank you very much for finding him.
I will give you #5 <ERR targ=pounds> ponds </ERR> reward.
the policemen took the #5 <ERR targ=pounds> ponud </ERR> and shared it.
And the old woman lived happy ever after and <ERR targ=always> all ways </ERR> took her own baby <ERR targ=wherever> were ever </ERR> she went.
The end.
Once upon a time <ERR targ=there> the </ERR> were a girl who wanted to get married, but her parents wouldn't let her not <ERR targ=until> untill </ERR> she were 20 or 21.
She had a boyfriend and so did he want to get married.
<ERR targ=his> he's </ERR> parents said if the <ERR targ=girl's> girls </ERR> folk agree you can .
The big day came she was a bit nervous.
She got up to the church and walked in with her father and stood up the <ERR targ=altar> alter </ERR> with her <ERR targ=boyfriend> boy friend </ERR> .
She were still nervous and so was he his knees were hitting together.
churching were over She walked up to the door with her husband .
there were all tins and shoes <ERR targ=tied> tired </ERR> on the back of the car and JUST MARRIED wrote on the window with lipstick.
All the people went back into the room and started clearing up .
they enjoyed living by <ERR targ=themselves> they self </ERR> .
one day they had a serious talk thinking about having a family of <ERR targ=their> they </ERR> own.
One day it <ERR targ=happened> happen </ERR> she was <ERR targ=pregnant> pregant </ERR> So when she told him he was pleased he said I am pleased you are having a baby.
So they went to <ERR targ=their> they </ERR> parents and told them the news .
he was a bonny boy, , they were both fond of him.
After that she had two more, and when they all grew up they all had <ERR targ=families> familys </ERR> of their own .
6.
WILLIAM GLEBE page 90
AN APPLE
It comes off of a tree when you pick it is rosy red and before you eat it makes your mouth water it even makes your mouth water when you hear the name gascoyne's scarlet.
when you go scrumping and when you get caught it is worth taking the chance of getting some gascoyne's scarlet apples.
when you go scrumping you have got to be <ERR targ=careful> carefull </ERR> you don't get caught if you do get caught the man will be waiting for you next time you go to get some more gascoyne scarlet apples.
when I go scrumping all I go after is apples and plums, pears.
when you go pinching <ERR targ=apples> apple </ERR> you do not want to take <ERR targ=too> to </ERR> many people or you will not get away so quick when there are a lot of people with you <ERR targ=especially> a specally </ERR> little boys they make too much noise.
If you pick apples off of the ground you have to be <ERR targ=careful> carful </ERR> of the wasps or else they will sting you and the sting comes up to a big bump <ERR targ=wherever> where ever </ERR> it stings you.
when you are by yourself and <ERR targ=someone> some one </ERR> comes and you have to climb over the <ERR targ=barbed> barb </ERR> wire and get caught the man will <ERR targ=probably> probally </ERR> catch you but if someone else is with you they can unhook you.
some people when <ERR targ=they> the </ERR> catch you they might hit you and <ERR targ=say> said </ERR> he will hit you harder next time he catches you.
But some people say they will hit you next time but warn you not to come in the orchard again But the children could not resist getting some more apples to eat.
It is best getting apples from an orchard where there are no houses.
when I go scrumping I do not take bikes because the man who owns the orchard might come along and take the bikes and if you want your bike you have to go and ask for it and that is how the owner of the orchard knows that you were in the orchard.
I never take a dark jacket or a red one because you will be <ERR targ=recognized> reconnised </ERR> very easy because red shows up very easy.
But still it is worth getting some gascoyne's scarlet apples.
The Fox The fox is a sly old beast He sits in his den cleaning and waiting To make <ERR targ=another> a nother </ERR> savage attack He walks the field to the farm The smell of chickens in the passing breeze.
he's gone to collect his meal.
He makes a leap.
Chickens cackle as the fox collects his meal.
WINTER When the snow lay round about The robins come out to seek crumbs Their feet are numb But the snow still lies round about.
A tree is a place for song That's where birds sing their sweet song.
The leaves have gone.
It will not be long before the tree has gone.
<ERR targ=Stranded> Stranden </ERR> on a Desert Island
One <ERR targ=midsummer> midsummer's </ERR> day at 9.30 a.m.
a ship was wrecked by a <ERR targ=coral> corral </ERR> reef so people jumped overboard.
People who could not swim did not know it was a case of life or death The ship was sinking fast but some still hung on.
the shore was only about a mile away so some began to swim to the shore.
Getting food from the ship was impossible but some people on the ship could get down to the store room and get some diving <ERR targ=outfits> out fits </ERR> .
So one man <ERR targ=volunteered> volonteered </ERR> to swim out to the ship and go down to the store room.
<ERR targ=There> Their </ERR> were dead <ERR targ=bodies> bodys </ERR> on the deck within 20 minutes of the <ERR targ=shipwreck> ship wreck </ERR> .
<ERR targ=There> Their </ERR> were 1 or 2 live people on board but he was frightened to go on the island.
The man who swam from the island went down to the store room.
He held his breath as he went down below the surface of the water.
As he <ERR targ=opened> open </ERR> the store room door the water gushed in very quickly.
So he had to feel for the diving suits.
He brought as many as he could find to the surface and that was only 5.
He got up in the crows nest and waved to the people on the island so they sent <ERR targ=two> to </ERR> men to help him.
When they arrived they all put their diving suits on <ERR targ=then> the </ERR> went down to get some food.
<ERR targ=Lucky> Luckily </ERR> enough it was mostly <ERR targ=tinned> tin </ERR> food.
They brought quite a lot up for the people on the island.
When looking around the deck they saw a <ERR targ=lifeboat> life boat </ERR> but it had a little hole in one side but they thought it would be good enough take the food to the island in.
They all had one tin of something each.
They all ate this just like pigs feeding out of a trough.
After they had their tin of food to eat people were still hungry so they started looking for coconuts.
They all decided that there would only be two meals a day.
most of them agreed but of course there were some who protested.
There was about 35 on the island but people who <ERR targ=used> use't </ERR> to get coconuts <ERR targ=usually> usally </ERR> got lost or got bitten by a snake.
They had <ERR targ=shortened> shortend </ERR> <ERR targ=down> done </ERR> from 35 to 15.
They kept near the coast so they could go in the sea if they wanted to.
And they could also catch fish to eat.
After several weeks ships had seen them waving but took no notice of them In september food was running short so they <ERR targ=killed> kill </ERR> animals and drank fresh water from springs.
they found here and there.
they found coconuts while hunting for animals.
They took the coconuts down to the shore and drained the milk out and ate the rest of the inside.
They caught quite a few tigers in traps which are holes dug in the <ERR targ=ground> gound </ERR> and sticks <ERR targ=laid> laide </ERR> across with grass on top of them.
At night they slept all together under coconut trees.
They were not surprised to see somebody dead in the morning.
One morning in december a ship was going across the sea to England they waved and waved again.
Then the ship began to turn and was coming to fetch them they were all delighted.
As soon <ERR targ=as> ass </ERR> they arrived on board the sailors told them to report to the captain's office.
They all too pleased to be on board a ship again the captain said how did you get on that island they replied we were shipwrecked in June and we have been there since.
They arrived in England 2 days later and how glad they were to be back in England again.
THE END
7.
WALTER PERKINS page 94
When <ERR targ=evening> evining </ERR> is dark And I am alone My <ERR targ=father's> farther's </ERR> at work And my mother's at Home I sit in my room Just <ERR targ=reading> reding </ERR> a book My HAT on the bed And my <ERR targ=coat> cote </ERR> on the <ERR targ=hook> hock </ERR> When TV is over and it's time for bed I pull over the covers And lay down my head.
I have a girl Small and <ERR targ=dark> dork </ERR> WE SIT IN THE <ERR targ=GARDEN> GARDON </ERR> AND LAY IN THE PARK.
The <ERR targ=Cheetah> Cheter </ERR>
A <ERR targ=cheetah> cheter </ERR> <ERR targ=prowls> prouls </ERR> around in the thick <ERR targ=undergrowth> undergroth </ERR> of the <ERR targ=jungle> jungel </ERR> .
Birds <ERR targ=clatter> clater </ERR> <ERR targ=their> there </ERR> wings and fly away to escape from the <ERR targ=jungle> jungel </ERR> cat.
<ERR targ=Monkeys> Munces </ERR> swing from tree to tree.
A <ERR targ=little> litel </ERR> way away the lions are gathering together.
the <ERR targ=cheetah> cheter </ERR> <ERR targ=roars> rorse </ERR> , something <ERR targ=falls> forls </ERR> to the ground, the <ERR targ=cheetah> cheter </ERR> has <ERR targ=caught> cort </ERR> its <ERR targ=prey> pray </ERR> .
Sudden <ERR targ=Death> Dearth </ERR>
One Saturday morning <ERR targ=when> wen </ERR> I was <ERR targ=having> haveing </ERR> my <ERR targ=breakfast> brecfast </ERR> a lady <ERR targ=came> come </ERR> and told me that her little boy had been playing with a dog, and the dog had <ERR targ=bitten> biten </ERR> part of the <ERR targ=boy's> boys </ERR> ear off.
I got my little black bag and followed her.
She told me that she lived in <ERR targ=Hong Kong> Honk Kong </ERR> street at number 32.
she <ERR targ=took> tuck </ERR> me to the river and we went on a <ERR targ=houseboat> house boat </ERR> .
I <ERR targ=thought> thort </ERR> it was a bit <ERR targ=queer> quere </ERR> then.
In the <ERR targ=houseboat> house boat </ERR> there <ERR targ=were> where </ERR> <ERR targ=four> fore </ERR> men, one <ERR targ=sitting> siting </ERR> on a <ERR targ=chair> chere </ERR> , one standing at the fore end of the boat another standing at the door <ERR targ=where> were </ERR> I <ERR targ=entered> enterd </ERR> and the other laying quite still on a bunk.
The man at the door said <ERR targ=that's> thats </ERR> <ERR targ=what> wat </ERR> you are here for.
To see that he lives and to take the <ERR targ=bullet> bolot </ERR> out of him.
I told him I did not have the proper <ERR targ=equipment> aquitment </ERR> for the job.
He told me to <ERR targ=write> rite </ERR> down on a <ERR targ=piece> pese </ERR> of paper <ERR targ=what> wot </ERR> I would <ERR targ=need> nede </ERR> .
Not long after one <ERR targ=of> on </ERR> the men came back with the things I started at <ERR targ=once> wons </ERR> to try and save his life, <ERR targ=when> wen </ERR> I had got the <ERR targ=bullet> bulete </ERR> out there was nothing to do but <ERR targ=wait> wat </ERR> and see <ERR targ=what> wot </ERR> <ERR targ=happened> hapends </ERR> , <ERR targ=Outside> Out side </ERR> there was a sound of sirens at that moment the three other men came rushing in I rushed for the gun one of them had he fired but it <ERR targ=missed> mist </ERR> me then he fired again that shot <ERR targ=missed> mist </ERR> me <ERR targ=too> to </ERR> but the <ERR targ=man> may </ERR> laying on the bunk <ERR targ=stopped> stoped </ERR> the <ERR targ=bullet> bulet </ERR> the police came rushing in and <ERR targ=took> tuck </ERR> the men and body to <ERR targ=prison> prisin </ERR> , the man laying on the bunk was dead that second <ERR targ=bullet> bulet </ERR> had killed him <ERR targ=suddenly> suddenel </ERR> .
THE END
8.
ROGER SCOTT page 97
I do not like school <ERR targ=It> I </ERR> is horrible, I have <ERR targ=had> has </ERR> the <ERR targ=cane> cain </ERR> because of one of the <ERR targ=teachers> teacher </ERR> got me the <ERR targ=cane> cain </ERR> for on a <ERR targ=Bicycle> Bicyle </ERR> .
.
.
Dear Sir, I <ERR targ=do not> donot </ERR> like this school because when something is done <ERR targ=wrong> rong </ERR> we get the blame for it.
So it about time something was done.
There are five of us in my family counting my mother and <ERR targ=father> farther </ERR> .
my father works at Concreteville as a electrician he has a firm of his own Six men work for him.
I like my mother and <ERR targ=Father> Farther </ERR> but I get a clout on the ear <ERR targ=sometimes> some time </ERR> .
but he is all right.
he got me a new Italian suit on Saturday, and my Mum got a <ERR targ=pair> per </ERR> of trousers on Saturday .
The Bat
The bats <ERR targ=fly> fie </ERR> by night <ERR targ=and> a </ERR> sleep by day, they hold on to the branches by their little <ERR targ=feet> fee </ERR> .
or in the caves and hold on to the rocks.
Bats <ERR targ=cannot> can not </ERR> see, but they can hear, the bats eat <ERR targ=flies> fies </ERR> and insects.
The Sick Sow
My name is James Brown I have some pigs on my farm and Six bullocks, <ERR targ=sexton> sixty one </ERR> cows; One day one of my <ERR targ=sows> sow </ERR> went sick, I did not <ERR targ=know> no </ERR> <ERR targ=what> wot </ERR> was the matter with her feet was <ERR targ=?> solued </ERR> and her mouth was <ERR targ=sore> saw </ERR> , I called the vet to look at her, he said her has got <ERR targ=foot-and-mouth> footandmouth </ERR> , All the sow pigs, bullocks, and cows, had to be <ERR targ=killed> kid </ERR> in the <ERR targ=area> airaear </ERR> of 15 miles all of the market had to be <ERR targ=stopped> stoped </ERR> , <ERR targ=After> Artair </ERR> 16 weeks <ERR targ=there> their </ERR> had not <ERR targ=been> bine </ERR> <ERR targ=another> aner </ERR> <ERR targ=outbreak> outdrak </ERR> of <ERR targ=foot-and-mouth> footanmouth </ERR> the markets was open I went to the market and got some pigs, and bullocks, the money I lost when my animals <ERR targ=were> wher </ERR> <ERR targ=killed> kid </ERR> I got it back by <ERR targ=selling> seling </ERR> the pigs, the money I got for the pigs I got some more bullocks, and <ERR targ=sold> soled </ERR> <ERR targ=them> the </ERR> <ERR targ=for the> fort </ERR> lot I got and got me a <ERR targ=Castle's> castels </ERR> lorry.
One year later.
One year later I got <ERR targ=me> we </ERR> a wife, I said to my wife I have got <ERR targ=enough> a nuff </ERR> money to <ERR targ=build> buld </ERR> a <ERR targ=slaughterhouse> slaughthouse </ERR> I <ERR targ=asked> arsed </ERR> the <ERR targ=council> cousall </ERR> if I <ERR targ=could> cod </ERR> have some land to <ERR targ=build> billed </ERR> a <ERR targ=slaughterhouse> slaughthouse </ERR> on the <ERR targ=council> counsall </ERR> <ERR targ=replied> replid </ERR> saying that I <ERR targ=could> cod </ERR> , so I <ERR targ=wrote> roat </ERR> to one of the <ERR targ=biggest> bigest </ERR> <ERR targ=building> billding </ERR> <ERR targ=firms> ferman </ERR> and <ERR targ=asked> arsed </ERR> if they would <ERR targ=billed> build </ERR> me a <ERR targ=slaughterhouse> slaughthouse </ERR> , they <ERR targ=replied> replid </ERR> saying that they would <ERR targ=build> billd </ERR> me a New <ERR targ=Slaughterhouse> Slaughthouse </ERR> , 20 years later I had <ERR targ=enough> nuff </ERR> money to <ERR targ=retire> retier </ERR> on so I gave the farm, and the <ERR targ=slaughterhouse> slaughthouse </ERR> and all of the <ERR targ=animals> animl </ERR> , to my son.
My wife said that she would like to go around the world.
We <ERR targ=left> lift </ERR> England to go to <ERR targ=France> Fance </ERR> then to all of the <ERR targ=main> mane </ERR> <ERR targ=parts> pars </ERR> of the world.
The End.
Gut Boy
My name is Roger Scott I work in a Slaughterhouse in Bridgebrook, I am the gut boy.
I work on Saturday and Sunday morning.
The first thing I have to do is to make the tea for the men.
On Saturday morning we have bullocks to kill first, after we have finished the Bullocks the men go and have their lunch, and we have to clean up, and empty the gut truck and then go and have my lunch and a fag.
I go back down to the Slaughterhouse after my lunch, and nose the pigs up.
by then <ERR targ=there> their </ERR> would <ERR targ=be> by </ERR> a gut on the table.
I would do the gut and get a tin <ERR targ=inside> in side </ERR> to run the guts into.
Then <ERR targ=hang> hung </ERR> the pluck up on the hook, and that goes on all Day.
until they let the hot water out of the tub, all of the hair goes into my truck, by the time the tub is empty, and has been <ERR targ=cleaned> clean </ERR> I have finished the guts.
all I have to do is to empty the hair and guts and out <ERR targ=do> go </ERR> the truck and then go home.
The end.
9.
JAMES CARR page 101
The Little Mother
One day a Girl of 14 fell in love with a boy of 15.
The girl Mary and the <ERR targ=boy's> boy </ERR> name was <ERR targ=James> Jame </ERR> .
<ERR targ=James> Jame </ERR> had been going out with Mary for time then one of his <ERR targ=friends> frens </ERR> told him that she was a <ERR targ=prostitute> prostut </ERR> .
They were going the <ERR targ=next> nest </ERR> night, <ERR targ=James> Jame </ERR> <ERR targ=telephoned> telphoned </ERR> Mary and told her he would not be <ERR targ=seeing> see </ERR> her <ERR targ=again> agan </ERR> Mary <ERR targ=said> sed </ERR> come <ERR targ=tonight> to night </ERR> and I will make it up to you.
So <ERR targ=James> Jame </ERR> all right then I will see you at the your place at 70 pm.
they met on a <ERR targ=common> comon </ERR> and Mary gave <ERR targ=James> Jame </ERR> a <ERR targ=Durex> Durxer </ERR> and then are have a <ERR targ=sexual> sexul </ERR> <ERR targ=intercourse> intercors </ERR> they <ERR targ=said> sed </ERR> <ERR targ=goodbye> good-by </ERR> .
3 months <ERR targ=later> lated </ERR> Mary <ERR targ=discovered> dicuverd </ERR> that <ERR targ=she> the </ERR> was <ERR targ=pregnant> pregnet </ERR> 6 months <ERR targ=later> latter </ERR> she had a baby boy THE END
<ERR targ=Smoking> Smocking </ERR> in the <ERR targ=house> houes </ERR>
One night in bed I had a puff, <ERR targ=while> wil </ERR> reading literature and, <ERR targ=listening> lsning </ERR> to hear if the <ERR targ=stairs> sairs </ERR> would <ERR targ=creak> creek </ERR> so I was not <ERR targ=caught> cort </ERR> <ERR targ=indiscreet> indiscrest </ERR> not a sound I could hear <ERR targ=till> utill </ERR> the door was <ERR targ=opened> open </ERR> as quick a <ERR targ=flash> flass </ERR> the fag was in bed But my <ERR targ=mum's> mums </ERR> got a <ERR targ=bloody> bludy </ERR> good <ERR targ=Nose> Nos </ERR>
The M.1 to English To English on the M.1.
Walk through the English book English as <ERR targ=simple> simpl </ERR> as ABC Crazy mixed up English English in a nutshell The <ERR targ=author's> others </ERR> <ERR targ=tongue> tung </ERR>
One night the cat working in the mill <ERR targ=spies> spys </ERR> a <ERR targ=mouse> moues </ERR> feeding on corn.
The cat <ERR targ=skilfully> scill filly </ERR> <ERR targ=creeps> creps </ERR> up behind a sack and all of a <ERR targ=sudden> suden </ERR> his <ERR targ=muscles> musirls </ERR> are <ERR targ=tense> tens </ERR> he <ERR targ=springs> spring </ERR> and a little <ERR targ=squeak> squick </ERR> from the mouse I <ERR targ=heard> herd </ERR> as the <ERR targ=cat's> cats </ERR> <ERR targ=claws> clors </ERR> <ERR targ=sunk> sunck </ERR> deep into the mouse the cat <ERR targ=quietly> quily </ERR> <ERR targ=ate> ete </ERR> it and then <ERR targ=curled> cerled </ERR> up on a sack to <ERR targ=sleep> slip </ERR> .
Which Way
One day a Youth got put on Probation for a year for stealing a box of oranges in Covent Garden.
His name is Bob.
He is 17 years old.
He had <ERR targ=done> dun </ERR> 9 months of his year.
Then Bob <ERR targ=started> straghted </ERR> to get <ERR targ=friendly> frendly </ERR> with a man called <ERR targ=James> Jame </ERR> .
<ERR targ=James> Jame </ERR> was about 30 years old he had been in <ERR targ=Prison> Prisern </ERR> 3 times for <ERR targ=housebreaking> house braking </ERR> , stealing cars, and <ERR targ=pickpocketing> pick poketin </ERR> .
<ERR targ=James> Jame </ERR> said to Bob will you do a job for me.
What is it I have to do.
take a lorry <ERR targ=from> for </ERR> Melton to Clare.
all right I will do it.
"When do you want me to pick up the lorry." " On Sunday night on the market hill, it will be a B.M.C. Austin 10 <ERR targ=tonner> toner </ERR> coloured red it will be loaded and covered up.
The <ERR targ=keys> kees </ERR> will be in the cab.
It must in Clare 4 a m on Monday morning on the market Place a car will be <ERR targ=waiting> whating </ERR> there to take you back to Melton.
Bob <ERR targ=decided> dicided </ERR> to <ERR targ=do> to </ERR> it.
on Sunday night Bob went to the market hill and <ERR targ=picked> pick </ERR> up the <ERR targ=lorry> lory </ERR> .
He <ERR targ=knew> new </ERR> how to drive it <ERR targ=because> becaues </ERR> he had <ERR targ=driven> drivern </ERR> one <ERR targ=before> befor </ERR> .
He was about 5 miles out of Melton and he began to think to himself "I <ERR targ=wonder> wund </ERR> <ERR targ=what> whate </ERR> is on this <ERR targ=lorry> lory </ERR> James <ERR targ=seemed> semed </ERR> <ERR targ=very> every </ERR> suspicious.
<ERR targ=thought> thort </ERR> Bob.
I <ERR targ=wonder> wund </ERR> <ERR targ=what> whate </ERR> is on it.
I will have a look when I get to a <ERR targ=layby> la-by </ERR> .
he comes to a <ERR targ=layby> la-by </ERR> and pulled in and had a look at the <ERR targ=load> lod </ERR> it was <ERR targ=stolen> stolon </ERR> whiskey Bob did not know what to do he <ERR targ=climbed> climb </ERR> in the cab, and sat and thought to himself, I <ERR targ=wonder> wunder </ERR> what to do, <ERR targ=should> shod </ERR> I tell the police or <ERR targ=should> shod </ERR> I keep <ERR targ=quiet> quiert </ERR> .
He <ERR targ=decided> dicider </ERR> to tell the police so he <ERR targ=carried> cared </ERR> on to a little village near Clare he saw a police car coming <ERR targ=down> donw </ERR> the road it <ERR targ=stopped> stop </ERR> the policeman wound down the window "You have not seen a man with a <ERR targ=load> lod </ERR> of whiskey on a <ERR targ=Austin> Autin </ERR> Ten <ERR targ=Tonner> Toner </ERR> <ERR targ=have> hav </ERR> you." Bob said, " I am glad you <ERR targ=stopped> stop </ERR> <ERR targ=because> becaues </ERR> I am driving the <ERR targ=lorry> lory </ERR> the <ERR targ=lorry> lory </ERR> is round the <ERR targ=corner> corer </ERR> I <ERR targ=stopped> stop </ERR> here <ERR targ=because> becaues </ERR> I was going to tell the police if you follow me you can catch the gang" The policeman said, " <ERR targ=Lead> Led </ERR> the way." Bob <ERR targ=nipped> niped </ERR> round the <ERR targ=corner> croner </ERR> and got the <ERR targ=lorry> lory </ERR> Bob and the police car <ERR targ=proceeded> proceded </ERR> to Clare.
By this time it was <ERR targ=half past> harfparst </ERR> <ERR targ=three> thee </ERR> in the morning, they got to the market place there was no one about so Bob put the <ERR targ=lorry> lory </ERR> in a corner.
<ERR targ=Meanwhile> Mean while </ERR> the Police got in position.
At 4 am <ERR targ=James> Jame </ERR> and his friends came.
<ERR targ=James> Jame </ERR> got out the car and walked over <ERR targ=to> too </ERR> Bob "good morning Bob" said <ERR targ=James> Jame </ERR> "Good morning" said Bob then <ERR targ=James> Jame </ERR> said "You got the <ERR targ=lorry> lory </ERR> here" "Yes" said Bob <ERR targ=James> Jame </ERR> was going to give Bob a #100 so <ERR targ=James> Jame </ERR> told him but it was a <ERR targ=lie> liy </ERR> .
<ERR targ=James> Jame </ERR> <ERR targ=interned> intended </ERR> to <ERR targ=double> doudle </ERR> cross Bob <ERR targ=James> Jame </ERR> gets a wad of #1 <ERR targ=notes> nots </ERR> out of his pocket, he handed the money to Bob.
Bob was just going to take the money and <ERR targ=James> Jame </ERR> dropped it.
Bob bent down to pick it up.
<ERR targ=That's> Thats </ERR> what <ERR targ=James> Jame </ERR> was waiting for he hit Bob on the head and <ERR targ=knocked> knokt </ERR> him out.
James and his <ERR targ=friends> frends </ERR> <ERR targ=picked> pick </ERR> him up and put him in the car.
The police <ERR targ=realized> realise </ERR> that James had found out that Bob <ERR targ=told> toled </ERR> them about James and the <ERR targ=gang> ganer </ERR> .
<ERR targ=James> Jame </ERR> and his <ERR targ=friend> frend </ERR> drove <ERR targ=off> of </ERR> in their car with Bob <ERR targ=lying> laying </ERR> in a <ERR targ=heap> heep </ERR> in the <ERR targ=floor> flor </ERR> of the car.
The police had got James car number and they were hot on the trail of them.
Bob was just coming to, he pull himself up and looked out of the back window he could see the police car behind.
James had not seen the police car behind they pulled up at a house they took Bob in the house.
The police <ERR targ=stopped> stop </ERR> near the house two policemen went round the back and <ERR targ=knocked> know </ERR> on the door when the policemen <ERR targ=knocked> know </ERR> at the door James and his <ERR targ=friends> frends </ERR> <ERR targ=looked> look </ERR> out back windows, Then the police went in the <ERR targ=front> frunt </ERR> door <ERR targ=James> Jame </ERR> was <ERR targ=coming> come </ERR> down the <ERR targ=stairs> sters </ERR> the <ERR targ=police> polic </ERR> <ERR targ=caught> cought </ERR> <ERR targ=James> Jame </ERR> and his <ERR targ=friends> frends </ERR> , they all <ERR targ=got> go </ERR> 10 years for robbery.
Bob had a lump on his head for a week but he got 50# reward.
The End.
Caught red handed
One day Tom an old <ERR targ=tramp> tamp </ERR> was <ERR targ=walking> warking </ERR> up a hill, it was getting dark and it was very cold.
It must have been <ERR targ=freezing> frizing </ERR> <ERR targ=hard> had </ERR> for there was icicles hanging <ERR targ=from> for </ERR> <ERR targ=gutter> guter </ERR> of <ERR targ=houses> houes </ERR> , the <ERR targ=snow> snowe </ERR> on ground was <ERR targ=crisp> cresp </ERR> as he <ERR targ=walked> wark </ERR> through the village.
Tom <ERR targ=saw> sorw </ERR> a light coming <ERR targ=from> for </ERR> a farmhouse it did not look far.
Old, Tom jumped a <ERR targ=ditch> dich </ERR> and <ERR targ=walked> wark </ERR> <ERR targ=towards> towords </ERR> the light he <ERR targ=arrived> arived </ERR> at farm.
He could see a <ERR targ=barn> bran </ERR> he went in and in corner there was a <ERR targ=heap> heep </ERR> of <ERR targ=straw> strow </ERR> in another there was a <ERR targ=heap> heep </ERR> of <ERR targ=potatoes> potates </ERR> and he could see a rabbit <ERR targ=locker> loker </ERR> .
He <ERR targ=walked> wark </ERR> over to it there was rabbit in it but he could not see how many there was.
He went back to the <ERR targ=straw> storw </ERR> lay down and went to sleep.
Next morning he was up at 4 am it was dark then he <ERR targ=thought> throught </ERR> he had <ERR targ=better> beter </ERR> go before the farmer got but he did not go <ERR targ=empty> emty </ERR> <ERR targ=handed> hang </ERR> he took two of the <ERR targ=farmer's> farmers </ERR> <ERR targ=rabbits> rabbit </ERR> and <ERR targ=some> sum </ERR> <ERR targ=potatoes> potates </ERR> in a bag.
He <ERR targ=walked> warked </ERR> about a mile.
Old <ERR targ=Tom's> Toms </ERR> legs began to <ERR targ=ache> ack </ERR> so he <ERR targ=stopped> stoped </ERR> he was in a <ERR targ=brussels> brus </ERR> field most of them were picked, it was just <ERR targ=getting> get </ERR> light.
Tom <ERR targ=put> pot </ERR> the two rabbits and potatoes down.
He sat down and <ERR targ=thought> thot </ERR> to himself how can I light a fire he <ERR targ=looked> look </ERR> round the field and he <ERR targ=saw> sow </ERR> to his delight a hide made from bale he <ERR targ=walked> warked </ERR> over to them there was <ERR targ=some> somes </ERR> strikes and a tin the tin had some <ERR targ=diesel> disel </ERR> in it.
Tom did not <ERR targ=lose> los </ERR> any time in making a fire he got an old tin out of the <ERR targ=hedge> heg </ERR> and put it the <ERR targ=fire> fre </ERR> he put some snow in it picked 3 or 4 <ERR targ=brussels> brusels </ERR> and got 2 <ERR targ=old> ol </ERR> potatoes and put in the tin with his <ERR targ=brussels> brusls </ERR> and the rabbit were <ERR targ=also> allso </ERR> cooked on the fire.
Tom <ERR targ=enjoyed> injoid </ERR> his food that night he went back for some more.
He did not know the <ERR targ=farmer> farm </ERR> was <ERR targ=waiting> wating </ERR> for him.
He went in the barn and shut the door the <ERR targ=farmer> farm </ERR> was on the loft.
" Stop <ERR targ=thief> thif </ERR> " said the <ERR targ=farmer> farm </ERR> Tom said <ERR targ=alright> allright </ERR> right <ERR targ=don't> dont </ERR> shoot" the <ERR targ=farmer> farm </ERR> <ERR targ=climbed> cimed </ERR> down Tom said "I only <ERR targ=want> wont </ERR> to sleep in here" <ERR targ=farmer> farm </ERR> said "have you been here <ERR targ=before> befor </ERR> " Tom said "no I have not" <ERR targ=farmer> farm </ERR> said to Tom well you get out and if I see you on my <ERR targ=?> grow </ERR> again I will blow your head <ERR targ=off> of </ERR> " so Tom <ERR targ=walked> warked </ERR> out of the <ERR targ=barn> bran </ERR> and back to the hide in the <ERR targ=brussels> brust </ERR> field next day he moved on into the next.
10.
JACK O'MALLEY page 106
In my family we have 8 children starting from the Oldest Robert, Stephen, Peter, Jack, Leon, Dilys, Derek and John.
three of them go to work and the rest go to school .
I like my family but I do not like Robert he keeps hitting my brothers...
HE DIED SLOWLY
<ERR targ=one> on </ERR> day a man and his wife was going for a holiday to America.
Their names were mary and Paul.
when they got to <ERR targ=America> American </ERR> paul bought a car they lived in a flat in California.
at night paul said I am going out for a ride in the car and when paul was going down a very steep hill he could not pull up his <ERR targ=brakes> breaks </ERR> , he was going 95 m.p.h .
and at the bottom of the hill was a car going across the road and just at the bottom paul hit the other car, his car was in flames and paul was thrown through the door and he landed in a field.
Paul was took away in the <ERR targ=ambulance> amblance </ERR> with very bad <ERR targ=injuries> injurys </ERR> on his head.
In the <ERR targ=ambulance> amblance </ERR> paul was <ERR targ=dying> dieing </ERR> slowly.
the doctor <ERR targ=gave> cave </ERR> him morphine and tried every he could to <ERR targ=save> safe </ERR> his life.
But when he got to the hospital he was dead .
after a while Mary got over the shock .
RUNAWAY BOY .
Bill <ERR targ=put> but </ERR> his gun on a nail on the table the nail was near the trigger and Bill <ERR targ=jogged> joged </ERR> the gun and it went off in his stomach he fell to the <ERR targ=ground> grouned </ERR> ...
THE KILLER
One day a man and his wife went for a holiday to Greece and he did not like his wife very much and wanted to get red of her .
he told her go and order some tea and When she had gone peter picked up an iron <ERR targ=candlestick> candle stick </ERR> and said to <ERR targ=himself> him self </ERR> I am going to kill her.
IN <ERR targ=Two> Tow </ERR> minutes she was Back as jane came in the door he hit her on the Back of the head she fell to the ground.
then he looked at her and she was dead
THE SON WHO SHOT HIS FATHER
It happened in 1949 when a <ERR targ=man's> mans </ERR> son aged 14 shot his father In the Back because he would not give him any tea so he got the gun from the <ERR targ=cupboard> cobard </ERR> and loaded it he called his dad in and pointed the gun at him his father said what are you doing with that gun I am going to <ERR targ=shoot> shot </ERR> you why he said because you would not give me any tea turn round <ERR targ=please> pleace </ERR> <ERR targ=don't> dont </ERR> he said again John said turn round so the father turned round and John shot him in the back.
the <ERR targ=neighbour> nabour </ERR> next door <ERR targ=heard> heared </ERR> the shot and ran round to the house she <ERR targ=John's> johns </ERR> father on the floor with blood coming the his back .
DIMMOX THE OLD MAN
Dimmox the old man was walking down the road one day and when three <ERR targ=boys> boy's </ERR> came out from the hedge and hit him in the face with a <ERR targ=apple> apply </ERR> then they ran away Dimmox lay on the ground with blood <ERR targ=coming> comeing </ERR> from his nose.
Then Dimmox went home and sat on the chair and <ERR targ=wiped> wippd </ERR> the blood from his eyes then he went back down the road saw the three boys which hit him they were <ERR targ=bending> bend in </ERR> down Dimmox got a stick and hit the three boys on the behind and made them run away crying <ERR targ=their> thire </ERR> eyes Dimmox said <ERR targ=I've> Ive </ERR> got my own back on you at last.
SUDDEN Death
One day a man and his wife were going to america for a holiday.
<ERR targ=their> there </ERR> names are peter and jane.
they were going to america for two weeks.
When they got there peter and jane went to a <ERR targ=garage> carage </ERR> to buy a car.
they got a big red <ERR targ=yankee> yanky </ERR> car.
then they went <ERR targ=off> of </ERR> to have a look round new York.
when they had done that peter and jane went to find a hotel.
they got the hotel and were all fixed in just right.
peter said to Jane how <ERR targ=about> a bout </ERR> me and you going to the <ERR targ=pictures> pitures </ERR> <ERR targ=tonight> to night </ERR> .
<ERR targ=alright> orrigh </ERR> darling we will go.
so when night came they went to the <ERR targ=pictures> pitures </ERR> .
the <ERR targ=cinema> cinma </ERR> was four miles from <ERR targ=their> there </ERR> hotel as they were going <ERR targ=along> a long </ERR> a <ERR targ=straight> stright </ERR> road Jane said let us see how fast our new car can go <ERR targ=alright> orright </ERR> dear <ERR targ=I'll> Ill </ERR> see if I can get a ton and was doing <ERR targ=ninety> ninty </ERR> five the <ERR targ=steering> stearing </ERR> locked.
the car went <ERR targ=straight> stright </ERR> <ERR targ=through> throw </ERR> a brick wall and turned over four times in the road then it went on fire.
there was no hope of peter and Jane coming out of the car alive.
when the <ERR targ=people> pople </ERR> heard the bang they came running out to see what they could do but it was <ERR targ=too> to </ERR> late for <ERR targ=anything> anyting </ERR> to be done they were both dead.
<ERR targ=peter's> peters </ERR> left leg was missing and Jane was burned all over.
a man rang for the police and <ERR targ=ambulance> amblance </ERR> when they came the <ERR targ=crowd> croud </ERR> was told to go home and <ERR targ=don't> dont </ERR> worry about the crash.
the next <ERR targ=their> there </ERR> parents was told of <ERR targ=their> there </ERR> sudden death.
then they flew the <ERR targ=bodies> bodys </ERR> over <ERR targ=to> the </ERR> england to be <ERR targ=buried> bered </ERR> there near <ERR targ=their> there </ERR> <ERR targ=parent's> parents </ERR> home <ERR targ=too> to </ERR> two days after the <ERR targ=funeral> funrel </ERR> <ERR targ=took> too </ERR> place <ERR targ=peter's> peters </ERR> mother <ERR targ=fainted> fanded </ERR> over the <ERR targ=grave> crave </ERR> of <ERR targ=her> here </ERR> son the <ERR targ=coffins> cofens </ERR> were put one on top of the other in the <ERR targ=grave> crave </ERR> <ERR targ=peter's> peter </ERR> mother had to be carried away by <ERR targ=her> here </ERR> other son and husband who were both crying with <ERR targ=heartbreak> hertbreake </ERR> <ERR targ=Jane's> Janes </ERR> mother was unable to <ERR targ=attend> atened </ERR> the <ERR targ=funeral> funerl </ERR> because she was ill after she had <ERR targ=heard> hered </ERR> the shock.
after the <ERR targ=funeral> funerl </ERR> they all went home <ERR targ=weeping> weping </ERR> .
it was three weeks when peter and jane got married and as they were going on <ERR targ=honeymoon> honymoon </ERR> <ERR targ=peter's> peters </ERR> dad said for a joke <ERR targ=don't> dont </ERR> kill <ERR targ=yourself> your self </ERR> after six weeks had gone they still <ERR targ=kept> kep </ERR> on taking about <ERR targ=their> there </ERR> <ERR targ=daughter> dauter </ERR> and son.
and not long after that <ERR targ=peter's> peters </ERR> mother died with <ERR targ=heart> hart </ERR> <ERR targ=attack> atack </ERR> , so then <ERR targ=peter's> peters </ERR> family was the <ERR targ=loneliest> lonlest </ERR> family in the world <ERR targ=peter's> peters </ERR> dad tried to stop him from crying but it was no use.
now they were dead and nothing could be done at all.
<ERR targ=peter's> peter </ERR> father took his son for a holiday to <ERR targ=Italy> Itlay </ERR> .
then they <ERR targ=soon> son </ERR> got over the shock but it took a long while <ERR targ=peter's> peters </ERR> father never went near a car since the death of his son and daughter in law.
THE END
11.
TOM SULLIVAN page 111
My family
There are Eight of us in my family counting my mother and <ERR targ=Father> Farther </ERR> .
I have two sisters, one Janet one Edna.
Three brothers Terry <ERR targ=Stuart> Sturt </ERR> and <ERR targ=Geoff> Goef </ERR> .
I think my family is awful because I get blamed for <ERR targ=nearly> nely </ERR> everything if one of my brothers hit <ERR targ=anyone> any own </ERR> else I get all the blame.
I got a bag nearly <ERR targ=full> ful </ERR> and then I <ERR targ=saw> soor </ERR> a man with a gun coming across the <ERR targ=meadow> meddow </ERR> after me, I put my bag over my shoulder and run, the old man come after me he <ERR targ=said> seid </ERR> stop or else I will blow your <ERR targ=head> hed </ERR> right off.
I said shut your gob and I took two apples out of my bag and through them at him, one hit him in the guts and hit him on the bonce, he fell <ERR targ=to> too </ERR> the ground and lay there, and I said to <ERR targ=myself> my self </ERR> <ERR targ=that's> thats </ERR> a good Job now I can eat my apples.
LEAVING SCHOOL
When I <ERR targ=leave> leav </ERR> school I am going to work up the petrol pumps at Mr Sturgess's at Mording.
I work up there at <ERR targ=weekends> weekend </ERR> and in the holidays.
I like working up there because I meet all kinds of people.
They have a farm attached to it they keep a few pigs up the farm and a few down the road in a meadow.
They have a tractor and a trailer.
<ERR targ=There> They </ERR> are two brothers Frank and John.
John is my boss.
Frank has four cars two which go and two which do not go.
John owns the tractor and trailer and all the pigs and a cattle lorry and Frank owns one bullock one cow and one <ERR targ=heifer> effer </ERR> .
THE FARM
When I go up the farm on saturday morning I go down the yard and start up the tractor, and back the trailer on and go up the yard, then clean the pigs out with John, then the lorry.
Then we go back down the yard and unload the dung.
Then I started the tractor up <ERR targ=again> a gain </ERR> , and went out on <ERR targ=to> too </ERR> the <ERR targ=field> fild </ERR> .
Then we <ERR targ=uncovered> an cafferd </ERR> some <ERR targ=mangels> manggles </ERR> , and loaded them up we got three <ERR targ=loads> loades </ERR> before dinner from about 11.30 until about 1. <ERR targ=o'clock> oclock </ERR> .
When we come back from dinner we started the tractor up again and went for <ERR targ=another> a nother </ERR> load, we got <ERR targ=four> for </ERR> more <ERR targ=loads> loades </ERR> before tea the last one we <ERR targ=got> go </ERR> stuck with.
But we soon got out of <ERR targ=that> theat </ERR> when John put some bricks under the wheels This is the tractor <ERR targ=which> witch </ERR> I drive at <ERR targ=weekends> week ends </ERR> , and in the holidays.
You have to start it by a handle and you have to turn the petrol on and when you get it going you have to let it warm up first and then turn it on to T.V.O.
Then away you go.
It is a low <ERR targ=geared> gird </ERR> tractor it has three <ERR targ=forward> fowd </ERR> <ERR targ=gears> girse </ERR> and 1 <ERR targ=reverse> reveirse </ERR> .
It has <ERR targ=four> for </ERR> <ERR targ=cylinders> silinders </ERR> and a <ERR targ=hydraulic> high drollit </ERR> lift. the <ERR targ=manifold> many fold </ERR> <ERR targ=has> as </ERR> burnt out so smoke and flames and sparks fly out of the <ERR targ=bottom> botton </ERR> of it.
if you fill the <ERR targ=radiator> radyator </ERR> up with water it will last for 10 minutes <ERR targ=because> becouse </ERR> it has a hole in the bottom of it as big round as a sixpence.
The Sick Sow.
Last week I went up the farm and Bill told me that he had just bought a black and white sow.
He said it fed all right for the first three days, but now she won't feed <ERR targ=at all> a tall </ERR> .
So I said let me come and look at <ERR targ=her> here </ERR> , so we went and had a look at <ERR targ=her> here </ERR> , and she was lame on the <ERR targ=her> here </ERR> right, front leg.
I said to Bill no wonder she <ERR targ=does> dus </ERR> not feed very well, she is lame on her front leg.
Bill said she will not feed <ERR targ=at all> a tool </ERR> , well let me see the kind of grub you give <ERR targ=her> here </ERR> then.
So Bill showed me, I said <ERR targ=don't> dont </ERR> you give the old <ERR targ=girl> gell </ERR> any <ERR targ=bran> brain </ERR> no said bill well <ERR targ=there> their </ERR> you are that is your <ERR targ=trouble> truble </ERR> then I said.
You give her some <ERR targ=bran> brain </ERR> tonight and then see if she will eat it.
Well I could give <ERR targ=her> here </ERR> some now <ERR targ=couldn't> couldnt </ERR> I yes if you wish Look at that see she will eat it now yes <ERR targ=thanks> thank </ERR> John, <ERR targ=that's> thats </ERR> all right mate.
She is in pig <ERR targ=isn't> in'sen't </ERR> she Bill <ERR targ=yes> yess </ERR> she <ERR targ=should> sould </ERR> have them on the 24th June.
Well I <ERR targ=know> no </ERR> one thing what you <ERR targ=want> won't </ERR> to do.
What is that John, you <ERR targ=want> won't </ERR> to clean <ERR targ=her> here </ERR> out and put <ERR targ=her> here </ERR> plenty of straw in the place where she sleeps and out in the yard.
The Old Bull
One day I went round old man <ERR targ=Jones's> Joneses </ERR> farm and he and some of his <ERR targ=workmen> work men </ERR> had got the bull out in the yard.
As I went in the gate the old bull started to <ERR targ=turn> tern </ERR> on me, so old man Jones, said get behind that old cart Joe.
About 4 or 5 minutes after, I came out from behind the cart.
They had got the old bull back in the shed.
Then he asked me if I would <ERR targ=help> held </ERR> him bring daisy the old cow up to go with the old bull, because he thinks that she ought to have a nothing calf.
So he put <ERR targ=her> here </ERR> in with old Toogey the bull he got on <ERR targ=her> here </ERR> back and we let him stay with <ERR targ=her> here </ERR> <ERR targ=for> fore </ERR> about half of an hour.
About four to five month after she had been with the old bull she had a calf it was a bull calf.
When it was about ten weeks old, when we sold it it made #15.10s.6d.
Then the time came for the old bull to be sold he was <ERR targ=too> to </ERR> old and fat for the old cows.
So we took him down tonbury market and he made #85.10/6d <ERR targ=alive> alife </ERR> he <ERR targ=weighed> wade </ERR> one and a half tons.
1.
A brown study means when <ERR targ=someone> some one </ERR> is in a sort of dream or a sulk.
2.
Fighting with your own shadow.
3.
The snow which the geese drip on the ground are feathers.
4.
To <ERR targ=grieve> greive </ERR> like a goose.
Poor Bob
It is ten years since Bob had his accident he was a bright lad I <ERR targ=shall> she </ERR> <ERR targ=never> nether </ERR> forget when I and Bob fell into a river coming home from church on Sunday night we had got our <ERR targ=clothes> cloths </ERR> on.
The were <ERR targ=covered> coverd </ERR> with mud and wet right through, when we got home mother and father <ERR targ=nearly> niely </ERR> killed us and then that night when we <ERR targ=were> where </ERR> all in bed, bob saw a lorry come up the road he always liked <ERR targ=lorries> lorry's </ERR> and cars he got up without a sound and hurried down stairs and opened the door and <ERR targ=ran> run </ERR> out into the road in front of the lorry it killed him <ERR targ=straight> strate </ERR> out he was only seventeen years old when he was killed.
I am just going to put some <ERR targ=more> moor </ERR> flowers on his grave are you coming with me.
The End.
12.
ROSE JAMESON page 117
Audrey was a bit <ERR targ=shy> shiy </ERR> she said <ERR targ=hallo> halloe </ERR> Rex and Rex said <ERR targ=hallo> alloe </ERR> Audrey <ERR targ=where> were </ERR> shall we sit here is a nice place to sit <ERR targ=right> rigth </ERR> at the back it is rather dark <ERR targ=isn't it> isinted </ERR> Rex well you <ERR targ=want> whon </ERR> it to be dark <ERR targ=don't> dont </ERR> you I will <ERR targ=hope> hop </ERR> it will be all <ERR targ=right> rigth </ERR> because <ERR targ=something> sothing </ERR> <ERR targ=always> allways </ERR> happens and <ERR targ=what> whot </ERR> is that audrey said <ERR targ=for> fore </ERR> <ERR targ=instance> instace </ERR> kissing and <ERR targ=cuddling> cuddly </ERR> Rex <ERR targ=said> siad </ERR> <ERR targ=don't> dont </ERR> you like it.
audrey said I <ERR targ=don't> dont </ERR> mind Rex said will you kiss me now audrey do you <ERR targ=want> whant </ERR> me to.
well <ERR targ=alright> arigth </ERR> then.
She lent over and gave him a kiss And Rex said how did that <ERR targ=feel> feal </ERR> a it was a lovely <ERR targ=feeling> feling </ERR> Rex will you do it <ERR targ=again> agian </ERR> .
Rex took <ERR targ=audrey> audre </ERR> home with him and <ERR targ=introduced> interdust </ERR> her to his mother Mum this is <ERR targ=audrey> audre </ERR> I am glad to meet you <ERR targ=audrey> audre </ERR> .
<ERR targ=audrey> audre </ERR> said I am glad to <ERR targ=meet> me </ERR> you Mrs Harison Mr. Harison said what was the <ERR targ=picture> pictuou </ERR> <ERR targ=like> lik </ERR> <ERR targ=oh> ow </ERR> it was <ERR targ=called> could </ERR> the five <ERR targ=thieves> theves </ERR> I <ERR targ=liked> lick </ERR> the bit where the <ERR targ=oldest> olddis </ERR> man fell down the <ERR targ=drain> drian </ERR> said Rex <ERR targ=Audrey> audre </ERR> said <ERR targ=oh> ow </ERR> <ERR targ=wasn't> wastent </ERR> it <ERR targ=funny> funney </ERR> when the man took the money.
he gave it to another man who he <ERR targ=thought> thorugh </ERR> was <ERR targ=his> is </ERR> <ERR targ=friend> frend </ERR> and it was The <ERR targ=policeman> police man </ERR> in his Sunday <ERR targ=best> beets </ERR> suit <ERR targ=Oh> Ow </ERR> that was funny.
and Mrs. Harrison said that will be enough for <ERR targ=tonight> to nigth </ERR> Audrey and <ERR targ=oh> ow </ERR> I never quite got your name .
On day in the <ERR targ=autumn> autunm
</ERR> pick an apple and smell it and what a lovely smell it has.
But when you pick it, it might have a bit of fungus you <ERR targ=might> migth </ERR> find a bit of spur with the leaves still on or you <ERR targ=might> migth </ERR> see <ERR targ=an> a </ERR> earwig <ERR targ=just> gust </ERR> coming out of it but that <ERR targ=doesn't> doesnet </ERR> mind just <ERR targ=flick> fick </ERR> it <ERR targ=off> of </ERR> when you <ERR targ=want> whont </ERR> to eat <ERR targ=just> gust </ERR> give it a shine and dig your <ERR targ=teeth> theeat </ERR> in it and you say what a lovely <ERR targ=taste> tast </ERR> it has very <ERR targ=juicy> juiciy </ERR> and you <ERR targ=feel> feal </ERR> a sort of tingle what <ERR targ=makes> mack </ERR> you feel so <ERR targ=gay> jay </ERR> .
Poem 3
Light light I see light On the fair They have light And in my house I have a lot of light I hope you don't have candles Because I hate candles Candles drop their wax And burn you If you get your hand in the way
Poem 5
When I think I think I always know it will come true I lay in bed thinking all night Until I fall asleep I dream of <ERR targ=wonderful> wondoful </ERR> things That will come true Oh why do we have dreams And think all the time Oh why.
I think I will go to bed I don't feel very well.
don't stay up <ERR targ=there> their </ERR> very long will you I hope you are coming out with <ERR targ=us> use </ERR> <ERR targ=tonight> tonigth </ERR> it <ERR targ=just> gust </ERR> depends how I feel <ERR targ=doesn't> donsent </ERR> <ERR targ=matter> mater </ERR> you <ERR targ=needn't> needent </ERR> come if you don't want to Jean.
<ERR targ=oh> ow </ERR> thank you I think I come now you said that.
Sorry what did I say.
<ERR targ=It> I </ERR> was the way you said it.
I so sorry to upset you I <ERR targ=suppose> sopose </ERR> it all right.
Well we better get <ERR targ=ready> redey </ERR> to go out <ERR targ=tonight> to nigth </ERR> you will need your coats and gloves it is very cold
My Family
In my family there are 5 we <ERR targ=used> ust </ERR> to have 6 but my mother died she died about 3 month ago died of her brain shrivelling up she could <ERR targ=have> of </ERR> died when she was a little girl but she had all of us if she would <ERR targ=have> of </ERR> lived she would have been blind deaf and <ERR targ=dumb> doum </ERR> and <ERR targ=paralysed> paralised </ERR> <ERR targ=sometimes> sone theme </ERR> times my father <ERR targ=cries> crys </ERR> I don't like him crying it <ERR targ=gets> get </ERR> on my <ERR targ=nerves> nerve </ERR> when I <ERR targ=doing> dowing </ERR> the work my little brother is a <ERR targ=nuisance> nousant </ERR> he <ERR targ=keeps> keep </ERR> on hitting me and <ERR targ=kicking> kiging </ERR> me when he <ERR targ=can't> canth </ERR> get his own way but is a nice boy <ERR targ=really> reley </ERR> and his name is steven <ERR targ=thomas> thomes </ERR> christopher.
One day I went to a <ERR targ=party> partey </ERR> they had nice things but I did not like some of the girls they <ERR targ=didn't> didden </ERR> like me some of them but I just sat there <ERR targ=watching> watcheing </ERR> them play games until <ERR targ=someone> some one </ERR> <ERR targ=asked> ask </ERR> me to <ERR targ=join> goin </ERR> in then I felt a bit better then The <ERR targ=girls> girl </ERR> were beginning to like me and in every game they <ERR targ=asked> ask </ERR> me to <ERR targ=join> joine </ERR> in.
When Jennifer was a little girl it was toys toys toys but now she is a big girl it is boys boys boys .
Apply it in little dots on the cheeks and blend in carefully otherwise it would look <ERR targ=awful> alfull </ERR> , if you don't put in on properly and people will start to <ERR targ=talk> torck </ERR> and I <ERR targ=tell> teel </ERR> you that <ERR targ=isn't> isant </ERR> very nice.
So I advise you to get the book about <ERR targ=make-up> macke up </ERR> because it <ERR targ=teaches> teset </ERR> you how to make your skin <ERR targ=lovely> lovyley </ERR> .
One day a lady <ERR targ=looked> look </ERR> out of the window it was very cold and <ERR targ=wet> weat </ERR> .
She saw the milk and <ERR targ=brought> broug </ERR> it in and on the <ERR targ=step> stepe </ERR> was a little <ERR targ=baby> babby </ERR> oh a baby.
I wonder <ERR targ=whose> hows </ERR> it is <ERR targ=I'll> ill </ERR> take it to the <ERR targ=police> poilice </ERR> I feed it first because it <ERR targ=might> mite </ERR> be <ERR targ=hungry> hungrey </ERR> are you poor thing don't cry you poor thing I wonder what it <ERR targ=likes> like </ERR> <ERR targ=I'll> I </ERR> give it some milk and see if it will stop crying I wonder what my husband will say when he gets home .
One day I was walking down the <ERR targ=street> sterret </ERR> <ERR targ=there> their </ERR> was a little mole I <ERR targ=picked> pick </ERR> it up and took it home it had caught <ERR targ=its> it </ERR> leg in a <ERR targ=trap> crat </ERR> and <ERR targ=broken> brocken </ERR> it <ERR targ=it> is </ERR> got better in a few weeks time but I set it free after a few days.
It came back I <ERR targ=built> bilt </ERR> it a <ERR targ=hutch> hudge </ERR> with a lot of mud and grass.
It liked that place very much I <ERR targ=tried> trid </ERR> to find anther mole I <ERR targ=found> fed </ERR> one it was quite big I did not know whether it was a male or a <ERR targ=female> feemale </ERR> but put them together they did <ERR targ=not> no </ERR> <ERR targ=fight> figth </ERR> after a few <ERR targ=months> month </ERR> she has some <ERR targ=babies> babyes </ERR> <ERR targ=four> fore </ERR> <ERR targ=little> litte </ERR> ones they were very sweet and they <ERR targ=never> neve </ERR> <ERR targ=wanted> wonted </ERR> to <ERR targ=leave> leve </ERR> me and <ERR targ=hutch> hudge </ERR> I <ERR targ=built> buit </ERR> for them I gave them worms and water and a few <ERR targ=breadcrumbs> bred crumes </ERR> it never <ERR targ=ate> eat </ERR> very <ERR targ=much> mush </ERR> at all they <ERR targ=lived> live </ERR> nicely in their little <ERR targ=hutch> hudge </ERR> <ERR targ=until> uatill </ERR> they all <ERR targ=died> diad </ERR> of old age .