forked from RussianSmalltalk/pharo-by-example-ru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwarnings.txt
6950 lines (6950 loc) · 403 KB
/
warnings.txt
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
This is pdfTeX, Version 3.1415926-2.3-1.40.12 (TeX Live 2011)
restricted \write18 enabled.
entering extended mode
(./PBE-Omnibus.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, dumylang, nohyphenation, ge
rman-x-2009-06-19, ngerman-x-2009-06-19, afrikaans, ancientgreek, ibycus, arabi
c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danis
h, dutch, ukenglish, usenglishmax, esperanto, estonian, ethiopic, farsi, finnis
h, french, galician, german, ngerman, swissgerman, monogreek, greek, hungarian,
icelandic, assamese, bengali, gujarati, hindi, kannada, malayalam, marathi, or
iya, panjabi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji,
lao, latin, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk, pol
ish, portuguese, romanian, russian, sanskrit, serbian, serbianc, slovak, sloven
ian, spanish, swedish, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded
.
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/book.cls
Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/bk10.clo))
(/usr/local/texlive/2011/texmf-dist/tex/latex/geometry/geometry.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/graphics/keyval.sty)
(/usr/local/texlive/2011/texmf-dist/tex/generic/oberdiek/ifpdf.sty)
(/usr/local/texlive/2011/texmf-dist/tex/generic/oberdiek/ifvtex.sty)
(/usr/local/texlive/2011/texmf-dist/tex/generic/ifxetex/ifxetex.sty))
(./common.tex (/usr/local/texlive/2011/texmf-dist/tex/latex/base/fontenc.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/cyrillic/t2aenc.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/cyrillic/t2acmr.fd))
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/inputenc.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/t1enc.dfu)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/ot1enc.dfu)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/omsenc.dfu)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/t2aenc.dfu)))
(/usr/local/texlive/2011/texmf-dist/tex/latex/lm/lmodern.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/psnfss/palatino.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/psnfss/helvet.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/microtype/microtype.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/microtype/microtype.cfg))
(/usr/local/texlive/2011/texmf-dist/tex/latex/graphics/graphicx.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/graphics/graphics.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/graphics/trig.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/latexconfig/graphics.cfg)
(/usr/local/texlive/2011/texmf-dist/tex/latex/pdftex-def/pdftex.def
(/usr/local/texlive/2011/texmf-dist/tex/generic/oberdiek/infwarerr.sty)
(/usr/local/texlive/2011/texmf-dist/tex/generic/oberdiek/ltxcmds.sty))))
(/usr/local/texlive/2011/texmf-dist/tex/latex/tools/theorem.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/tools/thp.sty))
(/usr/local/texlive/2011/texmf-dist/tex/generic/babel/babel.sty
(/usr/local/texlive/2011/texmf-dist/tex/generic/babel/english.ldf
(/usr/local/texlive/2011/texmf-dist/tex/generic/babel/babel.def))
(/usr/local/texlive/2011/texmf-dist/tex/generic/babel/russianb.ldf))
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/ifthen.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/float/float.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/tools/longtable.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/makeidx.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/tocbibind/tocbibind.sty
Package tocbibind Note: Using chapter style headings, unless overridden.
) (/usr/local/texlive/2011/texmf-dist/tex/latex/tools/multicol.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/booktabs/booktabs.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/ltxmisc/topcapt.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/multirow/multirow.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/tools/tabularx.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/tools/array.sty))
(/usr/local/texlive/2011/texmf-dist/tex/latex/tools/xspace.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/alltt.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/amsfonts/amssymb.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/amsfonts/amsfonts.sty))
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/textcomp.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/ts1enc.def
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/ts1enc.dfu)))
(/usr/local/texlive/2011/texmf-dist/tex/latex/graphics/color.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/latexconfig/color.cfg)
(/usr/local/texlive/2011/texmf-dist/tex/latex/graphics/dvipsnam.def))
(/usr/local/texlive/2011/texmf-dist/tex/latex/subfigure/subfigure.sty
****************************************
* Local config file subfigure.cfg used *
****************************************
(/usr/local/texlive/2011/texmf-dist/tex/latex/subfigure/subfigure.cfg))
(/usr/local/texlive/2011/texmf-dist/tex/latex/rotating/rotating.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/enumitem/enumitem.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/tools/verbatim.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/tools/varioref.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/needspace/needspace.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/isodate/isodateo.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/tools/calc.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/substr/substr.sty))
(/usr/local/texlive/2011/texmf-dist/tex/latex/titlesec/titlesec.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/titlesec/titletoc.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/wrapfig/wrapfig.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/jurabib/jurabib.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/url/url.sty) (./PBE-Omnibus.url)
(/usr/local/texlive/2011/texmf-dist/tex/latex/lm/ot1lmr.fd)
(/usr/local/texlive/2011/texmf-dist/tex/latex/lm/omllmm.fd)
(/usr/local/texlive/2011/texmf-dist/tex/latex/lm/omslmsy.fd)
(/usr/local/texlive/2011/texmf-dist/tex/latex/lm/omxlmex.fd)
(/usr/local/texlive/2011/texmf-dist/tex/latex/amsfonts/umsa.fd)
(/usr/local/texlive/2011/texmf-dist/tex/latex/amsfonts/umsb.fd)
Package jurabib Info: *** Local config file `jurabib.cfg' used ***
(/usr/local/texlive/2011/texmf-dist/tex/latex/jurabib/jurabib.cfg))
(/usr/local/texlive/2011/texmf-dist/tex/latex/hyperref/hyperref.sty
(/usr/local/texlive/2011/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
(/usr/local/texlive/2011/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty))
(/usr/local/texlive/2011/texmf-dist/tex/latex/oberdiek/kvoptions.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/hyperref/pd1enc.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/hyperref/puenc.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/latexconfig/hyperref.cfg))
Package hyperref Message: Driver (autodetected): hpdftex.
(/usr/local/texlive/2011/texmf-dist/tex/latex/hyperref/hpdftex.def
(/usr/local/texlive/2011/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty))
(/usr/local/texlive/2011/texmf-dist/tex/generic/ulem/ulem.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/xcolor/xcolor.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/latexconfig/color.cfg))
(/usr/local/texlive/2011/texmf-dist/tex/latex/titlesec/ttlps.def
Package titlesec Warning: You are using an old interface for page styles
(titlesec) You could proceed but don't complain if you run
(titlesec) into errors.
) (/usr/local/texlive/2011/texmf-dist/tex/latex/listings/listings.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/listings/lstmisc.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/listings/listings.cfg)))
Writing index file PBE-Omnibus.idx
Writing glossary file PBE-Omnibus.glo
(./PBE-Omnibus.aux
LaTeX Warning: Label `sec:overview' multiply defined.
) (/usr/local/texlive/2011/texmf-dist/tex/latex/base/ts1cmr.fd)
LaTeX Font Warning: Font shape `T2A/ppl/m/n' undefined
(Font) using `T2A/cmr/m/n' instead on input line 68.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
(/usr/local/texlive/2011/texmf-dist/tex/latex/microtype/mt-ppl.cfg)
(/usr/local/texlive/2011/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
) (/usr/local/texlive/2011/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
(/usr/local/texlive/2011/texmf-dist/tex/latex/oberdiek/grfext.sty)
(/usr/local/texlive/2011/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg))
Package jurabib Info: 'hyperref' + 'tabularx' loaded, adapting footnote macro
Package jurabib Info: *** jurabib set up for babel ***
Package jurabib Warning: The language you declared as babel main language
(jurabib) is not yet supported by jurabib, please contact
(jurabib) the maintainer! We're using english as the default now
..
(/usr/local/texlive/2011/texmf-dist/tex/latex/jurabib/enjbbib.ldf)
(/usr/local/texlive/2011/texmf-dist/tex/latex/hyperref/nameref.sty
(/usr/local/texlive/2011/texmf-dist/tex/generic/oberdiek/gettitlestring.sty))
(./PBE-Omnibus.out) (./PBE-Omnibus.out
pdfTeX warning (Object streams): \pdfobjcompresslevel > 0 requires \pdfminorver
sion > 4. Object streams disabled now.
)
LaTeX Font Warning: Font shape `T2A/ppl/bx/n' undefined
(Font) using `T2A/ppl/m/n' instead on input line 86.
(/usr/local/texlive/2011/texmf-dist/tex/latex/microtype/mt-cmr.cfg)
(/usr/local/texlive/2011/texmf-dist/tex/latex/microtype/mt-msa.cfg)
(/usr/local/texlive/2011/texmf-dist/tex/latex/microtype/mt-msb.cfg)
LaTeX Font Warning: Font shape `T2A/ppl/m/it' undefined
(Font) using `T2A/ppl/m/n' instead on input line 86.
[1{/usr/local/texlive/2011/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
LaTeX Font Warning: Font shape `T2A/phv/m/n' undefined
(Font) using `T2A/cmr/m/n' instead on input line 92.
Underfull \hbox (badness 10000) in paragraph at lines 92--93
(/usr/local/texlive/2011/texmf-dist/tex/latex/psnfss/ts1ppl.fd)
Underfull \hbox (badness 10000) in paragraph at lines 94--95
<figures/CreativeCommons-BY-SA.pdf, id=771, 124.465pt x 45.16875pt>
<use figures/CreativeCommons-BY-SA.pdf> [2 <./figures/CreativeCommons-BY-SA.pdf
>] (./PBE-Omnibus.toc
(/usr/local/texlive/2011/texmf-dist/tex/latex/psnfss/ot1ppl.fd) [3] [4]
[5]
pdfTeX warning (font expansion): font should be expanded before its first use
[6] [7] [8]) (./Preface/Preface.tex [9] [10] [11]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/psnfss/ts1phv.fd) [12]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
LaTeX Font Warning: Font shape `T2A/phv/m/it' undefined
(Font) using `T2A/phv/m/n' instead on input line 128.
<figures/pharo.png, id=1234, 198.7425pt x 200.75pt> <use figures/pharo.png>
<use figures/pharo.png> [13 <./figures/pharo.png>])
(./Preface/Preface-Omnibus.tex [14]) [15] [16] [1] [2]
(./QuickTour/QuickTour.tex
{\Russian \CYRG \cyrl \cyra \cyrv \cyra } 1.
<use figures/pharo.png>
<QuickTour/figures/annotatedDownload-flat.pdf, id=1269, 669.50125pt x 86.3225pt
> <use QuickTour/figures/annotatedDownload-flat.pdf> [3 <./QuickTour/figures/an
notatedDownload-flat.pdf>] <use figures/pharo.png>
<QuickTour/figures/startup.png, id=1301, 1319.93124pt x 853.1875pt>
<use QuickTour/figures/startup.png> <use figures/pharo.png> [4]
<use figures/pharo.png>
<QuickTour/figures/worldMenu.png, id=1313, 317.185pt x 314.17375pt>
<use QuickTour/figures/worldMenu.png>
<QuickTour/figures/yellowButtonMenuOnWorkspace.png, id=1314, 463.7325pt x 368.3
7625pt> <use QuickTour/figures/yellowButtonMenuOnWorkspace.png>
<QuickTour/figures/morphicHaloOnWorkspace.png, id=1315, 496.85625pt x 261.97874
pt> <use QuickTour/figures/morphicHaloOnWorkspace.png> [5 <./QuickTour/figures/
startup.png>]
LaTeX Font Warning: Font shape `T2A/ppl/m/sc' undefined
(Font) using `T2A/ppl/m/n' instead on input line 172.
[6 <./QuickTour/figures/worldMenu.png> <./QuickTour/figures/yellowButtonMenuOnW
orkspace.png> <./QuickTour/figures/morphicHaloOnWorkspace.png>]
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<QuickTour/figures/cloverleafKey.pdf, id=1332, 14.0525pt x 17.06375pt>
<use QuickTour/figures/cloverleafKey.pdf>
Underfull \hbox (badness 6204) in paragraph at lines 198--203
[]\T2A/ppl/m/sc/10 (+20) You can configure your mouse to work the way you want
Underfull \hbox (badness 7168) in paragraph at lines 198--203
\T2A/ppl/m/sc/10 (+20) by using the preferences of your operating system and mo
use
Underfull \hbox (badness 5302) in paragraph at lines 198--203
\T2A/ppl/m/sc/10 (+20) driver. Pharo has some preferences for customising the
mouse
Underfull \hbox (badness 3118) in paragraph at lines 198--203
\T2A/ppl/m/sc/10 (+20) and the meta keys on your keyboard. In the preference br
owser
Underfull \hbox (badness 10000) in paragraph at lines 198--203
\T2A/ppl/m/sc/10 (+20) ([][][][][][]), the [][][][][][]
<QuickTour/figures/PreferenceBrowser.png, id=1333, 627.34375pt x 448.67625pt>
<use QuickTour/figures/PreferenceBrowser.png> <use figures/pharo.png>
<use figures/pharo.png> <use figures/pharo.png> [7 <./QuickTour/figures/cloverl
eafKey.pdf>] (/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
<QuickTour/figures/Doit.png, id=1352, 463.7325pt x 369.38pt>
<use QuickTour/figures/Doit.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [8 <./QuickTour/fi
gures/PreferenceBrowser.png>] <use figures/pharo.png>
<QuickTour/figures/atoms.png, id=1361, 401.5pt x 250.9375pt>
<use QuickTour/figures/atoms.png>
<QuickTour/figures/saveAs.png, id=1362, 203.76125pt x 175.65625pt>
<use QuickTour/figures/saveAs.png> <use figures/pharo.png> [9 <./QuickTour/figu
res/Doit.png> <./QuickTour/figures/atoms.png> <./QuickTour/figures/saveAs.png>]
<use figures/pharo.png> <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [10]
<use figures/pharo.png> <use figures/pharo.png> <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
<QuickTour/figures/HelloWorld.png, id=1376, 646.415pt x 393.47pt>
<use QuickTour/figures/HelloWorld.png> [11] <use figures/pharo.png>
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [12 <./QuickTour/f
igures/HelloWorld.png>]
<QuickTour/figures/PrintIt.png, id=1389, 309.155pt x 129.48375pt>
<use QuickTour/figures/PrintIt.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<QuickTour/figures/InspectIt.png, id=1391, 597.23125pt x 299.1175pt>
<use QuickTour/figures/InspectIt.png> <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<QuickTour/figures/ExploreIt.png, id=1393, 430.60875pt x 387.4475pt>
<use QuickTour/figures/ExploreIt.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [13 <./QuickTour/f
igures/PrintIt.png>]
Underfull \vbox (badness 10000) has occurred while \output is active [14 <./Qui
ckTour/figures/InspectIt.png> <./QuickTour/figures/ExploreIt.png>]
<use figures/pharo.png>
<QuickTour/figures/ClassBrowser1.pdf, id=1410, 753.81625pt x 427.5975pt>
<use QuickTour/figures/ClassBrowser1.pdf>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png> <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [15 <./QuickTour/f
igures/ClassBrowser1.pdf>] <use figures/pharo.png> <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<QuickTour/figures/Kernel-objects-boolean.png, id=1437, 818.05624pt x 464.73625
pt> <use QuickTour/figures/Kernel-objects-boolean.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<QuickTour/figures/classComment.png, id=1440, 818.05624pt x 464.73625pt>
<use QuickTour/figures/classComment.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png> [16]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<QuickTour/figures/FindIt.png, id=1448, 503.8825pt x 389.455pt>
<use QuickTour/figures/FindIt.png>
<QuickTour/figures/TimeClasses.png, id=1449, 498.86375pt x 435.6275pt>
<use QuickTour/figures/TimeClasses.png> [17 <./QuickTour/figures/Kernel-objects
-boolean.png> <./QuickTour/figures/classComment.png>] <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<QuickTour/figures/methodFinder-now.png, id=1456, 416.55624pt x 314.17375pt>
<use QuickTour/figures/methodFinder-now.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [18 <./QuickTour/f
igures/FindIt.png> <./QuickTour/figures/TimeClasses.png>]
<QuickTour/figures/MethodFinder-example1.png, id=1464, 497.86pt x 304.13625pt>
<use QuickTour/figures/MethodFinder-example1.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [19 <./QuickTour/f
igures/methodFinder-now.png>]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<QuickTour/figures/StringTest-newMethodTemplate.png, id=1472, 818.05624pt x 464
.73625pt> <use QuickTour/figures/StringTest-newMethodTemplate.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [20 <./QuickTour/f
igures/MethodFinder-example1.png>]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<QuickTour/figures/name.png, id=1485, 469.755pt x 526.96875pt>
<use QuickTour/figures/name.png>
<QuickTour/figures/testShoutConfirm.png, id=1486, 875.27pt x 471.7625pt>
<use QuickTour/figures/testShoutConfirm.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png> <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [21 <./QuickTour/f
igures/StringTest-newMethodTemplate.png>]
<QuickTour/figures/testRunnerOnStringTest.png, id=1493, 657.45625pt x 494.84875
pt> <use QuickTour/figures/testRunnerOnStringTest.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<QuickTour/figures/Predebugger.png, id=1497, 490.83376pt x 199.74625pt>
<use QuickTour/figures/Predebugger.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [22 <./QuickTour/f
igures/name.png>] <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
<QuickTour/figures/String-Shout.png, id=1506, 818.05624pt x 464.73625pt>
<use QuickTour/figures/String-Shout.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \vbox (badness 2573) has occurred while \output is active [23 <./Quic
kTour/figures/testShoutConfirm.png>] [24 <./QuickTour/figures/testRunnerOnStrin
gTest.png> <./QuickTour/figures/Predebugger.png>] [25 <./QuickTour/figures/Stri
ng-Shout.png>]) (./FirstApp/FirstApp.tex [26]
{\Russian \CYRG \cyrl \cyra \cyrv \cyra } 2.
<FirstApp/figures/GameBoard.png, id=1528, 166.6225pt x 166.6225pt>
<use FirstApp/figures/GameBoard.png> [27 <./FirstApp/figures/GameBoard.png>]
<use figures/pharo.png>
<FirstApp/figures/AddPackage.png, id=1541, 341.275pt x 464.73625pt>
<use FirstApp/figures/AddPackage.png>
<FirstApp/figures/ClassTemplate.png, id=1542, 293.095pt x 464.73625pt>
<use FirstApp/figures/ClassTemplate.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [28]
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [29 <./FirstApp/fi
gures/AddPackage.png> <./FirstApp/figures/ClassTemplate.png>]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<FirstApp/figures/AcceptClassDef.png, id=1558, 512.91624pt x 351.3125pt>
<use FirstApp/figures/AcceptClassDef.png> <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [30 <./FirstApp/fi
gures/AcceptClassDef.png>] <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<FirstApp/figures/LOCell.png, id=1571, 818.05624pt x 464.73625pt>
<use FirstApp/figures/LOCell.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png> [31 <./FirstApp/figures/LOCell.png>]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [32]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<FirstApp/figures/LOCellInspector.png, id=1593, 767.86874pt x 463.7325pt>
<use FirstApp/figures/LOCellInspector.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<FirstApp/figures/LOCellResize.png, id=1594, 801.99625pt x 281.05pt>
<use FirstApp/figures/LOCellResize.png> <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [33]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png> [34 <./FirstApp/figures/LOCellInspector.png> <./FirstAp
p/figures/LOCellResize.png>]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<FirstApp/figures/UnknownSelector.png, id=1606, 441.65pt x 298.11375pt>
<use FirstApp/figures/UnknownSelector.png>
<FirstApp/figures/DeclareInstanceVar.png, id=1607, 417.56pt x 185.69376pt>
<use FirstApp/figures/DeclareInstanceVar.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [35]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [36 <./FirstApp/fi
gures/UnknownSelector.png> <./FirstApp/figures/DeclareInstanceVar.png>]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 4621) in paragraph at lines 539--540
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][
][][][][][][][][][][][][][][][][][] \T2A/ppl/m/sc/10 (+20) ñî-çäà-¼ò íî-âóþ
<FirstApp/figures/Categorize.png, id=1634, 596.2275pt x 464.73625pt>
<use FirstApp/figures/Categorize.png> [37] <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
LaTeX Font Warning: Font shape `T2A/pcr/m/n' undefined
(Font) using `T2A/cmr/m/n' instead on input line 590.
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [38 <./FirstApp/fi
gures/Categorize.png>]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1019) in paragraph at lines 599--600
[]\T2A/ppl/m/sc/10 (+20) Äàâàéòå òåïåðü îïðåäåëèì îñòàëüíûå äâà ìåòîäà, èñïîëüç
óìûõ
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 10000) in paragraph at lines 631--632
[]\T2A/ppl/m/sc/10 (+20) Ïîäòâåðäèòå ïðàâèëüíîñòü íàïèñàíèÿ ñåëåêòîðîâ
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [39]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
<FirstApp/figures/DragMethod.png, id=1668, 818.05624pt x 260.975pt>
<use FirstApp/figures/DragMethod.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 3547) in paragraph at lines 680--685
\T2A/ppl/m/sc/10 (+20) çíà÷åíèå. Ëþáîé ìåòîä, êîòîðûé èç-ìå-íÿ-åò çíà÷åíèå ïåðå
ìåííîé
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 5316) in paragraph at lines 687--692
[]\T2A/ppl/m/sc/10 (+20) Åñëè âû ïðèâûêëè ê ïîäîáíûì ìåòîäàì â äðóãèõ ÿçûêàõ
[40 <./FirstApp/figures/DragMethod.png>] <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [41]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<FirstApp/figures/Error.png, id=1690, 528.97626pt x 164.615pt>
<use FirstApp/figures/Error.png> <use figures/pharo.png>
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<FirstApp/figures/Debugger.png, id=1692, 617.30624pt x 514.92375pt>
<use FirstApp/figures/Debugger.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1215) in paragraph at lines 788--791
\T2A/ppl/m/sc/10 (+20) Â ëåâîì îêíå âû ìîæåòå ïðîèíñïåêòèðîâàòü îáúåêò, ÿâëÿþùè
éñÿ
Underfull \hbox (badness 2245) in paragraph at lines 793--794
\T2A/ppl/m/sc/10 (+20) êîä òî÷íî òàê æå, êàê âû ýòî äåëàåòå â ðàáî÷åé îáëàñòè.
Íî
[42 <./FirstApp/figures/Error.png>]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [43 <./FirstApp/fi
gures/Debugger.png>]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 2318) in paragraph at lines 835--838
\T2A/ppl/m/sc/10 (+20) è íàæàòü [][][][][][] (ïðîäîëæèòü), ÷òîáû ïðîäîëæèòü âûï
îëíåíèå
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png> [44] <use figures/pharo.png>
<FirstApp/figures/FileIn.png, id=1719, 767.86874pt x 514.92375pt>
<use FirstApp/figures/FileIn.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1466) in paragraph at lines 899--906
\T2A/ppl/m/sc/10 (+20) Õîòÿ âûãðóçêà êîäà â ôàéë ÿâëÿåòñÿ óäîáíûì ñïîñîáîì ñäåë
àòü
[45 <./FirstApp/figures/FileIn.png>]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png>
Underfull \hbox (badness 2057) in paragraph at lines 926--928
[]\T2A/ppl/m/sc/10 (+20) Íà ïðàâîé ïàíåëè áðàóçåðà (ñì. Ðèñ. [][]2.15[][]) íàõî
äèòñÿ ñïèñîê
<FirstApp/figures/MonticelloBrowser.png, id=1730, 825.0825pt x 331.2375pt>
<use FirstApp/figures/MonticelloBrowser.png>
Underfull \hbox (badness 1783) in paragraph at lines 939--940
[]\T2A/ppl/m/sc/10 (+20)  âåðõíåé ÷àñòè ñïèñêà íàõîäèòñÿ ðåïîçèòîðèé []package
cache,
Underfull \vbox (badness 2556) has occurred while \output is active [46 <./Firs
tApp/figures/MonticelloBrowser.png>] <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<use figures/pharo.png> <use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1389) in paragraph at lines 974--974
[] \T2A/ppl/m/sc/10 (+20) Âû-áå-ðè-òå ïà-êåò [][][][][][][][], à çà-òåì êëèê-íè
-òå ïî êíîï-êå
[47] (/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
<FirstApp/figures/BrowseRepository.png, id=1746, 730.73pt x 482.80376pt>
<use FirstApp/figures/BrowseRepository.png> <use figures/pharo.png>
<use figures/pharo.png>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [48 <./FirstApp/fi
gures/BrowseRepository.png>]
Underfull \hbox (badness 2096) in paragraph at lines 1035--1037
[]\T2A/ppl/m/sc/10 (+20) Íîâûé êëàññ ñîçäà¼òñÿ ïîñðåäñòâîì ïîñûëêè ñîîáùåíèÿ åã
î
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def))
(./Syntax/Syntax.tex [49] [50]
{\Russian \CYRG \cyrl \cyra \cyrv \cyra } 3.
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Overfull \hbox (32.11145pt too wide) in paragraph at lines 145--179
[][]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 10000) in paragraph at lines 195--200
[][][][][] \T2A/ppl/m/sc/10 (+20) --- ýòî èìÿ ïåðåìåííîé èëè
Underfull \hbox (badness 3930) in paragraph at lines 195--200
\T2A/ppl/m/sc/10 (+20) èäåíòèôèêàòîð. ïî óñòàíîâëåííîìó ñîãëàøåíèþ, ñîñòîèò èç
[51] (/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1466) in paragraph at lines 221--224
\T2A/ppl/m/sc/10 (+20) êîòîðûé èñïîëíÿåòñÿ, ò.å íà ñàìîãî ñåáÿ. Ìû íàçûâàåì åãî
Underfull \hbox (badness 3343) in paragraph at lines 221--224
\T2A/ppl/m/sc/10 (+20) "ïîëó÷àòåëü ïîòîìó ÷òî ýòîò îáúåêò íà êîòîðûé ññûëàåòñÿ
Underfull \hbox (badness 1248) in paragraph at lines 221--224
[][][][][]\T2A/ppl/m/sc/10 (+20) , ÿâëÿåòñÿ ïîëó÷àòåëåì ñîîáùåíèé. Òàêæå [][][]
[][] íàçûâàåòñÿ
[52] (/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 3492) in paragraph at lines 251--253
[]\T2A/ppl/m/sc/10 (+20) Äîëëàðîâûé çíàê è ïîñëåäóþùèé ëèòåðàë îáîçíà÷àåò
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 10000) in paragraph at lines 281--286
[]\T2A/ppl/m/sc/10 (+20) ìîæíî
Underfull \hbox (badness 5908) in paragraph at lines 281--286
\T2A/ppl/m/sc/10 (+20) Íàïðèìåð, [][][][][][][][][][][][][][][][][][][][][][][]
[] ñîñòîèò èç òðåõ ýëåìåíòîâ:
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 5681) in paragraph at lines 295--299
[]\T2A/ppl/m/sc/10 (+20) îïðåäåëÿþòñÿ ïðè
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 4582) in paragraph at lines 306--309
[]\T2A/ppl/m/sc/10 (+20) çàêëþ÷àþòñÿ â äâîéíûå êàâû÷êè. [][][][][][][][] ÿâëÿåò
ñÿ
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 2042) in paragraph at lines 317--322
[]\T2A/ppl/m/sc/10 (+20) âåðòèêàëüíûìè ïîëîñàìè [][][][][][][][] è
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [53]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 5652) in paragraph at lines 367--370
\T2A/ppl/m/sc/10 (+20) ÷èñëîì Smallinteger). Ïðîãðàììíûé êîä ðàñïîëîæåííûé çà
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 10000) in paragraph at lines 386--390
[]\T2A/ppl/m/sc/10 (+20) --- îïåðàòîðû ([][][][][][][][][][][][][][][][][][][][
] è ò.ä.) ïîñûëàåìûå
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 10000) in paragraph at lines 398--405
[]\T2A/ppl/m/sc/10 (+20) ñîñòîÿò èç íåñêîëüêèõ êëþ÷åâûõ ñëîâ
Underfull \hbox (badness 1859) in paragraph at lines 398--405
\T2A/ppl/m/sc/10 (+20) ([][][][]), êàæäîå ñëîâî çàêàí÷èâàåòñÿ äâîåòî÷èåì è
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 10000) in paragraph at lines 421--425
[]\T2A/ppl/m/sc/10 (+20) Êàæäîå Smalltalk ïðåäëîæåíèå
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1796) in paragraph at lines 433--438
[]\T2A/ppl/m/sc/10 (+20) Òî÷êà ñ çàïÿòîé èñïîëüçóåòñÿ äëÿ ïîñûëêè
Underfull \hbox (badness 4621) in paragraph at lines 433--438
\T2A/ppl/m/sc/10 (+20) íåñêîëüêèõ ñîîáùåíèé îäíîìó ïîëó÷àòåëþ.  ïðåäëîæåíèè
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [54]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 10000) in paragraph at lines 509--512
\T2A/ppl/m/sc/10 (+20) èñïîëíÿåìûé ýêçåìïëÿð êîíòåêñòà ìåòîäà ([][][][][])
Underfull \hbox (badness 1132) in paragraph at lines 509--512
\T2A/ppl/m/sc/10 (+20) èëè[][][][][]. [][][][] îáû÷íî íå ïðåäñòàâëÿåò èíòåðåñà
äëÿ
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [55]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1681) in paragraph at lines 591--594
\T2A/ppl/m/sc/10 (+20) ñîîáùåíèå [][][][][][][][] ê [][][][], è íàêîíåö [][][][
][][][][] ê[][][][][][]). Äàëåå ìû áóäåì
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1226) in paragraph at lines 679--681
[]\T2A/ppl/m/sc/10 (+20) Ïðîãðàììû ðàçðàáàòûâàþòñÿ èçìåíåíèåì èëè ñîçäàíèåì íîâ
ûõ
[56] (/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1881) in paragraph at lines 738--741
\T2A/ppl/m/sc/10 (+20) äëÿ ãëîáàëüíûõ ïåðåìåííûõ. Èìåíà êëàññîâ, íàïðèìåð [][][
][][],
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [57]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 2012) in paragraph at lines 787--790
[]\T2A/ppl/m/sc/10 (+20) Åñëè áëîê áîëåå ÷åì ñ ÷åòûðüìÿ ïàðàìåòðàìè, òîãäà ìîæí
î
Underfull \hbox (badness 10000) in paragraph at lines 787--790
\T2A/ppl/m/sc/10 (+20) èñïîëüçîâàòü ñîîáùåíèå [][][][][][][][][], ãäå
Underfull \hbox (badness 7291) in paragraph at lines 797--801
[]\T2A/ppl/m/sc/10 (+20) Áëîê ïîçâîëÿåò îïðåäåëÿòü ëîêàëüíûå ïåðåìåííûå, êîòîðû
å
Underfull \hbox (badness 1184) in paragraph at lines 797--801
\T2A/ppl/m/sc/10 (+20) ðàçäåëÿþòñÿ âåðòèêàëüíûìè ïîëîñàìè êàê è ïðè äåêëàðèðîâà
íèè,
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1122) in paragraph at lines 860--863
\T2A/ppl/m/sc/10 (+20) Â Smalltalk îòñóòñòâóåò ñïåöèàëüíûé ñèíòàêñèñ äëÿ óïðàâë
ÿþùèõ
[58] (/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 3690) in paragraph at lines 886--894
[]\T2A/ppl/m/sc/10 (+20) Öèêëû òîæå ðåàëèçîâàíû ÷åðåç îòïðàâêó ñîîáùåíèé áëîêàì
,
Underfull \hbox (badness 1297) in paragraph at lines 886--894
\T2A/ppl/m/sc/10 (+20) öåëî÷èñëåííûì èëè êîëëåêöèÿì. Òàê êàê â öèêëàõ èñïîëüçóþ
òñÿ
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 6300) in paragraph at lines 959--963
[] []\T2A/ppl/m/sc/10 (+20) Èòå-ðà-òî-ðû âû-ñî-êî-ãî ïî-ðÿä-êà.[] Êîëëåêöèè ñîñ
òîÿò èç áîëüøîãî
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 10000) in paragraph at lines 971--975
[][][][][] \T2A/ppl/m/sc/10 (+20) --- êîëëåêöèÿ, êîòîðàÿ ïîçâîëÿåò èòåðèðîâàòü
Underfull \hbox (badness 1087) in paragraph at lines 971--975
\T2A/ppl/m/sc/10 (+20) ïîñëåäîâàòåëüíîñòü ÷èñåë îò íà÷àëüíîãî ÷èñëà è äî êîíå÷í
îãî. []
Underfull \hbox (badness 1107) in paragraph at lines 971--975
[][][][][][][][][][][] \T2A/ppl/m/sc/10 (+20) ðåàëèçóåò èíòåðâàë îò 1 äî 10. Òà
ê êàê [][][][][] ÿâëÿåòñÿ
[59] (/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 1194) in paragraph at lines 1005--1006
[][][][][] \T2A/ppl/m/sc/10 (+20) è [][][][] ñîçäàåò íîâóþ êîëëåêöèþ, âêëþ÷àþùà
ÿ â ñåáÿ
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 10000) in paragraph at lines 1068--1073
[]\T2A/ppl/m/sc/10 (+20) Íàïðèìåð, âñå íèæåñëåäóþùèå ñîîáùåíèÿ ðåàëèçîâàíû êàê
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [60]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [61]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def))
(./Messages/Messages.tex [62]
{\Russian \CYRG \cyrl \cyra \cyrv \cyra } 4.
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def) [63]
<Messages/figures/message.pdf, id=1925, 311.1625pt x 223.83624pt>
<use Messages/figures/message.pdf>
<Messages/figures/uKeyUnOne.pdf, id=1926, 284.06125pt x 129.48375pt>
<use Messages/figures/uKeyUnOne.pdf>
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
Underfull \hbox (badness 5403) in paragraph at lines 88--88
[][][][][][][][] \T2A/ppl/m/sc/10 (+20) è [][][][][][][]
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)
(/usr/local/texlive/2011/texmf-dist/tex/latex/base/utf8.def)