about summary refs log tree commit diff stats
path: root/cpp/.traces/clear-line-erases-printed-characters
blob: 4aacb7e080013aa85f49fe46815cf32178a5aa92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
parse/0: instruction: init-fake-screen
parse/0:   ingredient: {name: "3", value: 0, type: 0, properties: ["3": "literal", "width": ]}
parse/0:   ingredient: {name: "2", value: 0, type: 0, properties: ["2": "literal", "height": ]}
parse/0:   product: {name: "1", value: 0, type: 2-11, properties: ["1": "address":"screen"]}
parse/0: instruction: print-character
parse/0:   ingredient: {name: "1", value: 0, type: 2-11, properties: ["1": "address":"screen"]}
parse/0:   ingredient: {name: "97", value: 0, type: 0, properties: ["97": "literal"]}
parse/0:   product: {name: "1", value: 0, type: 2-11, properties: ["1": "address":"screen"]}
parse/0: instruction: move-cursor
parse/0:   ingredient: {name: "1", value: 0, type: 2-11, properties: ["1": "address":"screen"]}
parse/0:   ingredient: {name: "0", value: 0, type: 0, properties: ["0": "literal", "row": ]}
parse/0:   ingredient: {name: "0", value: 0, type: 0, properties: ["0": "literal", "column": ]}
parse/0:   product: {name: "1", value: 0, type: 2-11, properties: ["1": "address":"screen"]}
parse/0: instruction: clear-line
parse/0:   ingredient: {name: "1", value: 0, type: 2-11, properties: ["1": "address":"screen"]}
parse/0:   product: {name: "1", value: 0, type: 2-11, properties: ["1": "address":"screen"]}
parse/0: instruction: get
parse/0:   ingredient: {name: "1", value: 0, type: 2-11, properties: ["1": "address":"screen", "deref": ]}
parse/0:   ingredient: {name: "data", value: 0, type: 0, properties: ["data": "offset"]}
parse/0:   product: {name: "2", value: 0, type: 2-5-4, properties: ["2": "address":"array":"character"]}
parse/0: instruction: copy
parse/0:   ingredient: {name: "2", value: 0, type: 2-5-4, properties: ["2": "address":"array":"character", "deref": ]}
parse/0:   product: {name: "3", value: 0, type: 5-4, properties: ["3": "array":"character"]}
name/0: element data of type screen is at offset 4
after-brace/0: recipe test-clear-line-erases-printed-characters
after-brace/0: init-fake-screen ...
after-brace/0: print-character ...
after-brace/0: move-cursor ...
after-brace/0: clear-line ...
after-brace/0: get ...
after-brace/0: copy ...
new/0: routine allocated memory from 1000 to 101000
schedule/0: test-clear-line-erases-printed-characters
run/0: instruction test-clear-line-erases-printed-characters/0
run/0: {name: "1", value: 1, type: 2-11, properties: ["1": "address":"screen"]} <- init-fake-screen {name: "3", value: 3, type: 0, properties: ["3": "literal", "width": ]}, {name: "2", value: 2, type: 0, properties: ["2": "literal", "height": ]}
run/0: instruction init-fake-screen/0
run/0: {name: "default-space", value: 0, type: 2-5-1, properties: ["default-space": "address":"array":"location"]} <- new {name: "location", value: 1, type: 0, properties: ["location": "type"]}, {name: "30", value: 30, type: 0, properties: ["30": "literal", "capacity": ]}
mem/0: array size is 30
mem/0: new alloc: 1000
run/0: instruction init-fake-screen/1
run/0: {name: "result", value: 1, type: 2-11, properties: ["result": "address":"screen"]} <- new {name: "screen", value: 11, type: 0, properties: ["screen": "type"]}
mem/0: new alloc: 1031
mem/0: storing 1031 in location 1002
run/0: instruction init-fake-screen/2
run/0: {name: "width", value: 2, type: 2-1, properties: ["width": "address":"integer"]} <- get-address {name: "result", value: 1, type: 2-11, properties: ["result": "address":"screen", "deref": ]}, {name: "num-columns", value: 1, type: 0, properties: ["num-columns": "offset"]}
run/0: ingredient 0 is result
mem/0: location 1002 is 1031
run/0: ingredient 1 is num-columns
run/0: address to copy is 1032
run/0: product 0 is 1032
mem/0: storing 1032 in location 1003
run/0: instruction init-fake-screen/3
run/0: {name: "width", value: 2, type: 2-1, properties: ["width": "address":"integer", "deref": ]} <- next-ingredient 
run/0: product 0 is 3
mem/0: location 1003 is 1032
mem/0: storing 3 in location 1032
run/0: instruction init-fake-screen/4
run/0: {name: "height", value: 3, type: 2-1, properties: ["height": "address":"integer"]} <- get-address {name: "result", value: 1, type: 2-11, properties: ["result": "address":"screen", "deref": ]}, {name: "num-rows", value: 0, type: 0, properties: ["num-rows": "offset"]}
run/0: ingredient 0 is result
mem/0: location 1002 is 1031
run/0: ingredient 1 is num-rows
run/0: address to copy is 1031
run/0: product 0 is 1031
mem/0: storing 1031 in location 1004
run/0: instruction init-fake-screen/5
run/0: {name: "height", value: 3, type: 2-1, properties: ["height": "address":"integer", "deref": ]} <- next-ingredient 
run/0: product 0 is 2
mem/0: location 1004 is 1031
mem/0: storing 2 in location 1031
run/0: instruction init-fake-screen/6
run/0: {name: "row", value: 4, type: 2-1, properties: ["row": "address":"integer"]} <- get-address {name: "result", value: 1, type: 2-11, properties: ["result": "address":"screen", "deref": ]}, {name: "cursor-row", value: 2, type: 0, properties: ["cursor-row": "offset"]}
run/0: ingredient 0 is result
mem/0: location 1002 is 1031
run/0: ingredient 1 is cursor-row
run/0: address to copy is 1033
run/0: product 0 is 1033
mem/0: storing 1033 in location 1005
run/0: instruction init-fake-screen/7
run/0: {name: "row", value: 4, type: 2-1, properties: ["row": "address":"integer", "deref": ]} <- copy {name: "0", value: 0, type: 0, properties: ["0": "literal"]}
run/0: ingredient 0 is 0
mem/0: location 1005 is 1033
mem/0: storing 0 in location 1033
run/0: instruction init-fake-screen/8
run/0: {name: "column", value: 5, type: 2-1, properties: ["column": "address":"integer"]} <- get-address {name: "result", value: 1, type: 2-11, properties: ["result": "address":"screen", "deref": ]}, {name: "cursor-column", value: 3, type: 0, properties: ["cursor-column": "offset"]}
run/0: ingredient 0 is result
mem/0: location 1002 is 1031
run/0: ingredient 1 is cursor-column
run/0: address to copy is 1034
run/0: product 0 is 1034
mem/0: storing 1034 in location 1006
run/0: instruction init-fake-screen/9
run/0: {name: "column", value: 5, type: 2-1, properties: ["column": "address":"integer", "deref": ]} <- copy {name: "0", value: 0, type: 0, properties: ["0": "literal"]}
run/0: ingredient 0 is 0
mem/0: location 1006 is 1034
mem/0: storing 0 in location 1034
run/0: instruction init-fake-screen/10
run/0: {name: "bufsize", value: 6, type: 1, properties: ["bufsize": "integer"]} <- multiply {name: "width", value: 2, type: 2-1, properties: ["width": "address":"integer", "deref": ]}, {name: "height", value: 3, type: 2-1, properties: ["height": "address":"integer", "deref": ]}
run/0: ingredient 0 is width
mem/0: location 1003 is 1032
mem/0: location 1032 is 3
run/0: ingredient 1 is height
mem/0: location 1004 is 1031
mem/0: location 1031 is 2
run/0: ingredient 1 is 2
run/0: product 0 is 6
mem/0: storing 6 in location 1007
run/0: instruction init-fake-screen/11
run/0: {name: "buf", value: 7, type: 2-2-5-4, properties: ["buf": "address":"address":"array":"character"]} <- get-address {name: "result", value: 1, type: 2-11, properties: ["result": "address":"screen", "deref": ]}, {name: "data", value: 4, type: 0, properties: ["data": "offset"]}
run/0: ingredient 0 is result
mem/0: location 1002 is 1031
run/0: ingredient 1 is data
run/0: address to copy is 1035
run/0: product 0 is 1035
mem/0: storing 1035 in location 1008
run/0: instruction init-fake-screen/12
run/0: {name: "buf", value: 7, type: 2-2-5-4, properties: ["buf": "address":"address":"array":"character", "deref": ]} <- new {name: "character", value: 0, type: 0, properties: ["character": "literal"]}, {name: "bufsize", value: 6, type: 1, properties: ["bufsize": "integer"]}
mem/0: location 1007 is 6
mem/0: array size is 6
mem/0: new alloc: 1036
mem/0: location 1008 is 1035
mem/0: storing 1036 in location 1035
run/0: instruction init-fake-screen/13
run/0: clear-screen {name: "result", value: 1, type: 2-11, properties: ["result": "address":"screen"]}
mem/0: location 1002 is 1031
run/0: instruction clear-screen/0
run/0: {name: "default-space", value: 0, type: 2-5-1, properties: ["default-space": "address":"array":"location"]} <- new {name: "location", value: 1, type: 0, properties: ["location": "type"]}, {name: "30", value: 30, type: 0, properties: ["30": "literal"]}
mem/0: array size is 30
mem/0: new alloc: 1043
run/0: instruction clear-screen/1
run/0: {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]} <- next-ingredient 
run/0: product 0 is 1031
mem/0: storing 1031 in location 1045
run/0: instruction clear-screen/3
run/0: break-unless {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]}, {name: "", value: 12, type: , properties: ["": ]}
mem/0: location 1045 is 1031
run/0: ingredient 0 is 1031
run/0: jump-unless fell through
run/0: instruction clear-screen/4
run/0: {name: "buf", value: 2, type: 2-5-4, properties: ["buf": "address":"array":"character"]} <- get {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "data", value: 4, type: 0, properties: ["data": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1045 is 1031
run/0: ingredient 1 is data
run/0: address to copy is 1035
run/0: its type is 2
mem/0: location 1035 is 1036
run/0: product 0 is 1036
mem/0: storing 1036 in location 1046
run/0: instruction clear-screen/5
run/0: {name: "max", value: 3, type: 1, properties: ["max": "integer"]} <- length {name: "buf", value: 2, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}
mem/0: location 1046 is 1036
mem/0: storing 6 in location 1047
run/0: instruction clear-screen/6
run/0: {name: "i", value: 4, type: 1, properties: ["i": "integer"]} <- copy {name: "0", value: 0, type: 0, properties: ["0": "literal"]}
run/0: ingredient 0 is 0
mem/0: storing 0 in location 1048
run/0: instruction clear-screen/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "max", value: 3, type: 1, properties: ["max": "integer"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 0
run/0: ingredient 1 is max
mem/0: location 1047 is 6
run/0: product 0 is 0
mem/0: storing 0 in location 1049
run/0: instruction clear-screen/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 4, type: , properties: ["": ]}
mem/0: location 1049 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction clear-screen/10
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character"]} <- index-address {name: "buf", value: 2, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}, {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
run/0: ingredient 0 is buf
mem/0: location 1046 is 1036
run/0: ingredient 1 is {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
mem/0: location 1048 is 0
run/0: address to copy is 1037
run/0: product 0 is 1037
mem/0: storing 1037 in location 1050
run/0: instruction clear-screen/11
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character", "deref": ]} <- copy {name: " ", value: 0, type: 0, properties: [" ": "literal-string"]}
run/0: ingredient 0 is  
mem/0: location 1050 is 1037
mem/0: storing 0 in location 1037
run/0: instruction clear-screen/12
run/0: {name: "i", value: 4, type: 1, properties: ["i": "integer"]} <- add {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "1", value: 1, type: 0, properties: ["1": "literal"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 0
run/0: ingredient 1 is 1
run/0: product 0 is 1
mem/0: storing 1 in location 1048
run/0: instruction clear-screen/13
run/0: loop {name: "", value: -6, type: , properties: ["": ]}
run/0: ingredient 0 is -6
run/0: jumping to instruction 8
run/0: instruction clear-screen/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "max", value: 3, type: 1, properties: ["max": "integer"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 1
run/0: ingredient 1 is max
mem/0: location 1047 is 6
run/0: product 0 is 0
mem/0: storing 0 in location 1049
run/0: instruction clear-screen/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 4, type: , properties: ["": ]}
mem/0: location 1049 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction clear-screen/10
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character"]} <- index-address {name: "buf", value: 2, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}, {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
run/0: ingredient 0 is buf
mem/0: location 1046 is 1036
run/0: ingredient 1 is {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
mem/0: location 1048 is 1
run/0: address to copy is 1038
run/0: product 0 is 1038
mem/0: storing 1038 in location 1050
run/0: instruction clear-screen/11
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character", "deref": ]} <- copy {name: " ", value: 0, type: 0, properties: [" ": "literal-string"]}
run/0: ingredient 0 is  
mem/0: location 1050 is 1038
mem/0: storing 0 in location 1038
run/0: instruction clear-screen/12
run/0: {name: "i", value: 4, type: 1, properties: ["i": "integer"]} <- add {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "1", value: 1, type: 0, properties: ["1": "literal"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 1
run/0: ingredient 1 is 1
run/0: product 0 is 2
mem/0: storing 2 in location 1048
run/0: instruction clear-screen/13
run/0: loop {name: "", value: -6, type: , properties: ["": ]}
run/0: ingredient 0 is -6
run/0: jumping to instruction 8
run/0: instruction clear-screen/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "max", value: 3, type: 1, properties: ["max": "integer"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 2
run/0: ingredient 1 is max
mem/0: location 1047 is 6
run/0: product 0 is 0
mem/0: storing 0 in location 1049
run/0: instruction clear-screen/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 4, type: , properties: ["": ]}
mem/0: location 1049 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction clear-screen/10
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character"]} <- index-address {name: "buf", value: 2, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}, {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
run/0: ingredient 0 is buf
mem/0: location 1046 is 1036
run/0: ingredient 1 is {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
mem/0: location 1048 is 2
run/0: address to copy is 1039
run/0: product 0 is 1039
mem/0: storing 1039 in location 1050
run/0: instruction clear-screen/11
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character", "deref": ]} <- copy {name: " ", value: 0, type: 0, properties: [" ": "literal-string"]}
run/0: ingredient 0 is  
mem/0: location 1050 is 1039
mem/0: storing 0 in location 1039
run/0: instruction clear-screen/12
run/0: {name: "i", value: 4, type: 1, properties: ["i": "integer"]} <- add {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "1", value: 1, type: 0, properties: ["1": "literal"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 2
run/0: ingredient 1 is 1
run/0: product 0 is 3
mem/0: storing 3 in location 1048
run/0: instruction clear-screen/13
run/0: loop {name: "", value: -6, type: , properties: ["": ]}
run/0: ingredient 0 is -6
run/0: jumping to instruction 8
run/0: instruction clear-screen/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "max", value: 3, type: 1, properties: ["max": "integer"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 3
run/0: ingredient 1 is max
mem/0: location 1047 is 6
run/0: product 0 is 0
mem/0: storing 0 in location 1049
run/0: instruction clear-screen/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 4, type: , properties: ["": ]}
mem/0: location 1049 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction clear-screen/10
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character"]} <- index-address {name: "buf", value: 2, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}, {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
run/0: ingredient 0 is buf
mem/0: location 1046 is 1036
run/0: ingredient 1 is {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
mem/0: location 1048 is 3
run/0: address to copy is 1040
run/0: product 0 is 1040
mem/0: storing 1040 in location 1050
run/0: instruction clear-screen/11
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character", "deref": ]} <- copy {name: " ", value: 0, type: 0, properties: [" ": "literal-string"]}
run/0: ingredient 0 is  
mem/0: location 1050 is 1040
mem/0: storing 0 in location 1040
run/0: instruction clear-screen/12
run/0: {name: "i", value: 4, type: 1, properties: ["i": "integer"]} <- add {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "1", value: 1, type: 0, properties: ["1": "literal"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 3
run/0: ingredient 1 is 1
run/0: product 0 is 4
mem/0: storing 4 in location 1048
run/0: instruction clear-screen/13
run/0: loop {name: "", value: -6, type: , properties: ["": ]}
run/0: ingredient 0 is -6
run/0: jumping to instruction 8
run/0: instruction clear-screen/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "max", value: 3, type: 1, properties: ["max": "integer"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 4
run/0: ingredient 1 is max
mem/0: location 1047 is 6
run/0: product 0 is 0
mem/0: storing 0 in location 1049
run/0: instruction clear-screen/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 4, type: , properties: ["": ]}
mem/0: location 1049 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction clear-screen/10
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character"]} <- index-address {name: "buf", value: 2, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}, {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
run/0: ingredient 0 is buf
mem/0: location 1046 is 1036
run/0: ingredient 1 is {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
mem/0: location 1048 is 4
run/0: address to copy is 1041
run/0: product 0 is 1041
mem/0: storing 1041 in location 1050
run/0: instruction clear-screen/11
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character", "deref": ]} <- copy {name: " ", value: 0, type: 0, properties: [" ": "literal-string"]}
run/0: ingredient 0 is  
mem/0: location 1050 is 1041
mem/0: storing 0 in location 1041
run/0: instruction clear-screen/12
run/0: {name: "i", value: 4, type: 1, properties: ["i": "integer"]} <- add {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "1", value: 1, type: 0, properties: ["1": "literal"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 4
run/0: ingredient 1 is 1
run/0: product 0 is 5
mem/0: storing 5 in location 1048
run/0: instruction clear-screen/13
run/0: loop {name: "", value: -6, type: , properties: ["": ]}
run/0: ingredient 0 is -6
run/0: jumping to instruction 8
run/0: instruction clear-screen/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "max", value: 3, type: 1, properties: ["max": "integer"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 5
run/0: ingredient 1 is max
mem/0: location 1047 is 6
run/0: product 0 is 0
mem/0: storing 0 in location 1049
run/0: instruction clear-screen/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 4, type: , properties: ["": ]}
mem/0: location 1049 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction clear-screen/10
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character"]} <- index-address {name: "buf", value: 2, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}, {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
run/0: ingredient 0 is buf
mem/0: location 1046 is 1036
run/0: ingredient 1 is {name: "i", value: 4, type: 1, properties: ["i": "integer"]}
mem/0: location 1048 is 5
run/0: address to copy is 1042
run/0: product 0 is 1042
mem/0: storing 1042 in location 1050
run/0: instruction clear-screen/11
run/0: {name: "c", value: 6, type: 2-4, properties: ["c": "address":"character", "deref": ]} <- copy {name: " ", value: 0, type: 0, properties: [" ": "literal-string"]}
run/0: ingredient 0 is  
mem/0: location 1050 is 1042
mem/0: storing 0 in location 1042
run/0: instruction clear-screen/12
run/0: {name: "i", value: 4, type: 1, properties: ["i": "integer"]} <- add {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "1", value: 1, type: 0, properties: ["1": "literal"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 5
run/0: ingredient 1 is 1
run/0: product 0 is 6
mem/0: storing 6 in location 1048
run/0: instruction clear-screen/13
run/0: loop {name: "", value: -6, type: , properties: ["": ]}
run/0: ingredient 0 is -6
run/0: jumping to instruction 8
run/0: instruction clear-screen/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "i", value: 4, type: 1, properties: ["i": "integer"]}, {name: "max", value: 3, type: 1, properties: ["max": "integer"]}
run/0: ingredient 0 is i
mem/0: location 1048 is 6
run/0: ingredient 1 is max
mem/0: location 1047 is 6
run/0: product 0 is 1
mem/0: storing 1 in location 1049
run/0: instruction clear-screen/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 4, type: , properties: ["": ]}
mem/0: location 1049 is 1
run/0: ingredient 0 is 1
run/0: ingredient 1 is 
run/0: jumping to instruction 14
run/0: instruction clear-screen/15
run/0: reply {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "same-as-ingredient": "0"]}
mem/0: location 1045 is 1031
run/0: instruction init-fake-screen/14
run/0: reply {name: "result", value: 1, type: 2-11, properties: ["result": "address":"screen"]}
mem/0: location 1002 is 1031
run/0: result 0 is 1031
mem/0: storing 1031 in location 1
run/0: instruction test-clear-line-erases-printed-characters/1
run/0: {name: "1", value: 1, type: 2-11, properties: ["1": "address":"screen"]} <- print-character {name: "1", value: 1, type: 2-11, properties: ["1": "address":"screen"]}, {name: "97", value: 97, type: 0, properties: ["97": "literal"]}
mem/0: location 1 is 1031
run/0: instruction print-character/0
run/0: {name: "default-space", value: 0, type: 2-5-1, properties: ["default-space": "address":"array":"location"]} <- new {name: "location", value: 1, type: 0, properties: ["location": "type"]}, {name: "30", value: 30, type: 0, properties: ["30": "literal"]}
mem/0: array size is 30
mem/0: new alloc: 1074
run/0: instruction print-character/1
run/0: {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]} <- next-ingredient 
run/0: product 0 is 1031
mem/0: storing 1031 in location 1076
run/0: instruction print-character/2
run/0: {name: "c", value: 2, type: 4, properties: ["c": "character"]} <- next-ingredient 
run/0: product 0 is 97
mem/0: storing 97 in location 1077
run/0: instruction print-character/4
run/0: break-unless {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]}, {name: "", value: 14, type: , properties: ["": ]}
mem/0: location 1076 is 1031
run/0: ingredient 0 is 1031
run/0: jump-unless fell through
run/0: instruction print-character/5
run/0: {name: "row", value: 3, type: 2-1, properties: ["row": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-row", value: 2, type: 0, properties: ["cursor-row": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1076 is 1031
run/0: ingredient 1 is cursor-row
run/0: address to copy is 1033
run/0: product 0 is 1033
mem/0: storing 1033 in location 1078
run/0: instruction print-character/6
run/0: {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-column", value: 3, type: 0, properties: ["cursor-column": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1076 is 1031
run/0: ingredient 1 is cursor-column
run/0: address to copy is 1034
run/0: product 0 is 1034
mem/0: storing 1034 in location 1079
run/0: instruction print-character/7
run/0: {name: "width", value: 5, type: 1, properties: ["width": "integer"]} <- get {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "num-columns", value: 1, type: 0, properties: ["num-columns": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1076 is 1031
run/0: ingredient 1 is num-columns
run/0: address to copy is 1032
run/0: its type is 1
mem/0: location 1032 is 3
run/0: product 0 is 3
mem/0: storing 3 in location 1080
run/0: instruction print-character/8
run/0: {name: "index", value: 6, type: 1, properties: ["index": "integer"]} <- multiply {name: "row", value: 3, type: 2-1, properties: ["row": "address":"integer", "deref": ]}, {name: "width", value: 5, type: 1, properties: ["width": "integer"]}
run/0: ingredient 0 is row
mem/0: location 1078 is 1033
mem/0: location 1033 is 0
run/0: ingredient 1 is width
mem/0: location 1080 is 3
run/0: ingredient 1 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1081
run/0: instruction print-character/9
run/0: {name: "index", value: 6, type: 1, properties: ["index": "integer"]} <- add {name: "index", value: 6, type: 1, properties: ["index": "integer"]}, {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}
run/0: ingredient 0 is index
mem/0: location 1081 is 0
run/0: ingredient 1 is column
mem/0: location 1079 is 1034
mem/0: location 1034 is 0
run/0: product 0 is 0
mem/0: storing 0 in location 1081
run/0: instruction print-character/10
run/0: {name: "buf", value: 7, type: 2-5-4, properties: ["buf": "address":"array":"character"]} <- get {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "data", value: 4, type: 0, properties: ["data": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1076 is 1031
run/0: ingredient 1 is data
run/0: address to copy is 1035
run/0: its type is 2
mem/0: location 1035 is 1036
run/0: product 0 is 1036
mem/0: storing 1036 in location 1082
run/0: instruction print-character/11
run/0: {name: "cursor", value: 8, type: 2-4, properties: ["cursor": "address":"character"]} <- index-address {name: "buf", value: 7, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}, {name: "index", value: 6, type: 1, properties: ["index": "integer"]}
run/0: ingredient 0 is buf
mem/0: location 1082 is 1036
run/0: ingredient 1 is {name: "index", value: 6, type: 1, properties: ["index": "integer"]}
mem/0: location 1081 is 0
run/0: address to copy is 1037
run/0: product 0 is 1037
mem/0: storing 1037 in location 1083
run/0: instruction print-character/12
run/0: {name: "cursor", value: 8, type: 2-4, properties: ["cursor": "address":"character", "deref": ]} <- copy {name: "c", value: 2, type: 4, properties: ["c": "character"]}
run/0: ingredient 0 is c
mem/0: location 1077 is 97
mem/0: location 1083 is 1037
mem/0: storing 97 in location 1037
run/0: instruction print-character/14
run/0: {name: "at-right?", value: 9, type: 3, properties: ["at-right?": "boolean"]} <- equal {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "width", value: 5, type: 1, properties: ["width": "integer"]}
run/0: ingredient 0 is column
mem/0: location 1079 is 1034
mem/0: location 1034 is 0
run/0: ingredient 1 is width
mem/0: location 1080 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1084
run/0: instruction print-character/15
run/0: break-if {name: "at-right?", value: 9, type: 3, properties: ["at-right?": "boolean"]}, {name: "", value: 1, type: , properties: ["": ]}
mem/0: location 1084 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction print-character/16
run/0: {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]} <- add {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "1", value: 1, type: 0, properties: ["1": "literal"]}
run/0: ingredient 0 is column
mem/0: location 1079 is 1034
mem/0: location 1034 is 0
run/0: ingredient 1 is 1
run/0: product 0 is 1
mem/0: location 1079 is 1034
mem/0: storing 1 in location 1034
run/0: instruction print-character/18
run/0: reply {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "same-as-ingredient": "0"]}
mem/0: location 1076 is 1031
run/0: result 0 is 1031
mem/0: storing 1031 in location 1
run/0: instruction test-clear-line-erases-printed-characters/2
run/0: {name: "1", value: 1, type: 2-11, properties: ["1": "address":"screen"]} <- move-cursor {name: "1", value: 1, type: 2-11, properties: ["1": "address":"screen"]}, {name: "0", value: 0, type: 0, properties: ["0": "literal", "row": ]}, {name: "0", value: 0, type: 0, properties: ["0": "literal", "column": ]}
mem/0: location 1 is 1031
run/0: instruction move-cursor/0
run/0: {name: "default-space", value: 0, type: 2-5-1, properties: ["default-space": "address":"array":"location"]} <- new {name: "location", value: 1, type: 0, properties: ["location": "type"]}, {name: "30", value: 30, type: 0, properties: ["30": "literal"]}
mem/0: array size is 30
mem/0: new alloc: 1105
run/0: instruction move-cursor/1
run/0: {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]} <- next-ingredient 
run/0: product 0 is 1031
mem/0: storing 1031 in location 1107
run/0: instruction move-cursor/2
run/0: {name: "new-row", value: 2, type: 1, properties: ["new-row": "integer"]} <- next-ingredient 
run/0: product 0 is 0
mem/0: storing 0 in location 1108
run/0: instruction move-cursor/3
run/0: {name: "new-column", value: 3, type: 1, properties: ["new-column": "integer"]} <- next-ingredient 
run/0: product 0 is 0
mem/0: storing 0 in location 1109
run/0: instruction move-cursor/5
run/0: break-unless {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]}, {name: "", value: 5, type: , properties: ["": ]}
mem/0: location 1107 is 1031
run/0: ingredient 0 is 1031
run/0: jump-unless fell through
run/0: instruction move-cursor/6
run/0: {name: "row", value: 4, type: 2-1, properties: ["row": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-row", value: 2, type: 0, properties: ["cursor-row": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1107 is 1031
run/0: ingredient 1 is cursor-row
run/0: address to copy is 1033
run/0: product 0 is 1033
mem/0: storing 1033 in location 1110
run/0: instruction move-cursor/7
run/0: {name: "row", value: 4, type: 2-1, properties: ["row": "address":"integer", "deref": ]} <- copy {name: "new-row", value: 2, type: 1, properties: ["new-row": "integer"]}
run/0: ingredient 0 is new-row
mem/0: location 1108 is 0
mem/0: location 1110 is 1033
mem/0: storing 0 in location 1033
run/0: instruction move-cursor/8
run/0: {name: "column", value: 5, type: 2-1, properties: ["column": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-column", value: 3, type: 0, properties: ["cursor-column": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1107 is 1031
run/0: ingredient 1 is cursor-column
run/0: address to copy is 1034
run/0: product 0 is 1034
mem/0: storing 1034 in location 1111
run/0: instruction move-cursor/9
run/0: {name: "column", value: 5, type: 2-1, properties: ["column": "address":"integer", "deref": ]} <- copy {name: "new-column", value: 3, type: 1, properties: ["new-column": "integer"]}
run/0: ingredient 0 is new-column
mem/0: location 1109 is 0
mem/0: location 1111 is 1034
mem/0: storing 0 in location 1034
run/0: instruction move-cursor/10
run/0: reply {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "same-as-ingredient": "0"]}
mem/0: location 1107 is 1031
run/0: result 0 is 1031
mem/0: storing 1031 in location 1
run/0: instruction test-clear-line-erases-printed-characters/3
run/0: {name: "1", value: 1, type: 2-11, properties: ["1": "address":"screen"]} <- clear-line {name: "1", value: 1, type: 2-11, properties: ["1": "address":"screen"]}
mem/0: location 1 is 1031
run/0: instruction clear-line/0
run/0: {name: "default-space", value: 0, type: 2-5-1, properties: ["default-space": "address":"array":"location"]} <- new {name: "location", value: 1, type: 0, properties: ["location": "type"]}, {name: "30", value: 30, type: 0, properties: ["30": "literal"]}
mem/0: array size is 30
mem/0: new alloc: 1136
run/0: instruction clear-line/1
run/0: {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]} <- next-ingredient 
run/0: product 0 is 1031
mem/0: storing 1031 in location 1138
run/0: instruction clear-line/3
run/0: break-unless {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]}, {name: "", value: 11, type: , properties: ["": ]}
mem/0: location 1138 is 1031
run/0: ingredient 0 is 1031
run/0: jump-unless fell through
run/0: instruction clear-line/4
run/0: {name: "n", value: 2, type: 1, properties: ["n": "integer"]} <- get {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "num-columns", value: 1, type: 0, properties: ["num-columns": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1138 is 1031
run/0: ingredient 1 is num-columns
run/0: address to copy is 1032
run/0: its type is 1
mem/0: location 1032 is 3
run/0: product 0 is 3
mem/0: storing 3 in location 1139
run/0: instruction clear-line/5
run/0: {name: "column", value: 3, type: 2-1, properties: ["column": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-column", value: 3, type: 0, properties: ["cursor-column": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1138 is 1031
run/0: ingredient 1 is cursor-column
run/0: address to copy is 1034
run/0: product 0 is 1034
mem/0: storing 1034 in location 1140
run/0: instruction clear-line/6
run/0: {name: "original-column", value: 4, type: 1, properties: ["original-column": "integer"]} <- copy {name: "column", value: 3, type: 2-1, properties: ["column": "address":"integer", "deref": ]}
run/0: ingredient 0 is column
mem/0: location 1140 is 1034
mem/0: location 1034 is 0
mem/0: storing 0 in location 1141
run/0: instruction clear-line/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "column", value: 3, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "n", value: 2, type: 1, properties: ["n": "integer"]}
run/0: ingredient 0 is column
mem/0: location 1140 is 1034
mem/0: location 1034 is 0
run/0: ingredient 1 is n
mem/0: location 1139 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1142
run/0: instruction clear-line/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 2, type: , properties: ["": ]}
mem/0: location 1142 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction clear-line/10
run/0: print-character {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]}, {name: " ", value: 0, type: 0, properties: [" ": "literal-string"]}
mem/0: location 1138 is 1031
run/0: instruction print-character/0
run/0: {name: "default-space", value: 0, type: 2-5-1, properties: ["default-space": "address":"array":"location"]} <- new {name: "location", value: 1, type: 0, properties: ["location": "type"]}, {name: "30", value: 30, type: 0, properties: ["30": "literal"]}
mem/0: array size is 30
mem/0: new alloc: 1167
run/0: instruction print-character/1
run/0: {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]} <- next-ingredient 
run/0: product 0 is 1031
mem/0: storing 1031 in location 1169
run/0: instruction print-character/2
run/0: {name: "c", value: 2, type: 4, properties: ["c": "character"]} <- next-ingredient 
run/0: product 0 is 0
mem/0: storing 0 in location 1170
run/0: instruction print-character/4
run/0: break-unless {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]}, {name: "", value: 14, type: , properties: ["": ]}
mem/0: location 1169 is 1031
run/0: ingredient 0 is 1031
run/0: jump-unless fell through
run/0: instruction print-character/5
run/0: {name: "row", value: 3, type: 2-1, properties: ["row": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-row", value: 2, type: 0, properties: ["cursor-row": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1169 is 1031
run/0: ingredient 1 is cursor-row
run/0: address to copy is 1033
run/0: product 0 is 1033
mem/0: storing 1033 in location 1171
run/0: instruction print-character/6
run/0: {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-column", value: 3, type: 0, properties: ["cursor-column": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1169 is 1031
run/0: ingredient 1 is cursor-column
run/0: address to copy is 1034
run/0: product 0 is 1034
mem/0: storing 1034 in location 1172
run/0: instruction print-character/7
run/0: {name: "width", value: 5, type: 1, properties: ["width": "integer"]} <- get {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "num-columns", value: 1, type: 0, properties: ["num-columns": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1169 is 1031
run/0: ingredient 1 is num-columns
run/0: address to copy is 1032
run/0: its type is 1
mem/0: location 1032 is 3
run/0: product 0 is 3
mem/0: storing 3 in location 1173
run/0: instruction print-character/8
run/0: {name: "index", value: 6, type: 1, properties: ["index": "integer"]} <- multiply {name: "row", value: 3, type: 2-1, properties: ["row": "address":"integer", "deref": ]}, {name: "width", value: 5, type: 1, properties: ["width": "integer"]}
run/0: ingredient 0 is row
mem/0: location 1171 is 1033
mem/0: location 1033 is 0
run/0: ingredient 1 is width
mem/0: location 1173 is 3
run/0: ingredient 1 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1174
run/0: instruction print-character/9
run/0: {name: "index", value: 6, type: 1, properties: ["index": "integer"]} <- add {name: "index", value: 6, type: 1, properties: ["index": "integer"]}, {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}
run/0: ingredient 0 is index
mem/0: location 1174 is 0
run/0: ingredient 1 is column
mem/0: location 1172 is 1034
mem/0: location 1034 is 0
run/0: product 0 is 0
mem/0: storing 0 in location 1174
run/0: instruction print-character/10
run/0: {name: "buf", value: 7, type: 2-5-4, properties: ["buf": "address":"array":"character"]} <- get {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "data", value: 4, type: 0, properties: ["data": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1169 is 1031
run/0: ingredient 1 is data
run/0: address to copy is 1035
run/0: its type is 2
mem/0: location 1035 is 1036
run/0: product 0 is 1036
mem/0: storing 1036 in location 1175
run/0: instruction print-character/11
run/0: {name: "cursor", value: 8, type: 2-4, properties: ["cursor": "address":"character"]} <- index-address {name: "buf", value: 7, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}, {name: "index", value: 6, type: 1, properties: ["index": "integer"]}
run/0: ingredient 0 is buf
mem/0: location 1175 is 1036
run/0: ingredient 1 is {name: "index", value: 6, type: 1, properties: ["index": "integer"]}
mem/0: location 1174 is 0
run/0: address to copy is 1037
run/0: product 0 is 1037
mem/0: storing 1037 in location 1176
run/0: instruction print-character/12
run/0: {name: "cursor", value: 8, type: 2-4, properties: ["cursor": "address":"character", "deref": ]} <- copy {name: "c", value: 2, type: 4, properties: ["c": "character"]}
run/0: ingredient 0 is c
mem/0: location 1170 is 0
mem/0: location 1176 is 1037
mem/0: storing 0 in location 1037
run/0: instruction print-character/14
run/0: {name: "at-right?", value: 9, type: 3, properties: ["at-right?": "boolean"]} <- equal {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "width", value: 5, type: 1, properties: ["width": "integer"]}
run/0: ingredient 0 is column
mem/0: location 1172 is 1034
mem/0: location 1034 is 0
run/0: ingredient 1 is width
mem/0: location 1173 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1177
run/0: instruction print-character/15
run/0: break-if {name: "at-right?", value: 9, type: 3, properties: ["at-right?": "boolean"]}, {name: "", value: 1, type: , properties: ["": ]}
mem/0: location 1177 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction print-character/16
run/0: {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]} <- add {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "1", value: 1, type: 0, properties: ["1": "literal"]}
run/0: ingredient 0 is column
mem/0: location 1172 is 1034
mem/0: location 1034 is 0
run/0: ingredient 1 is 1
run/0: product 0 is 1
mem/0: location 1172 is 1034
mem/0: storing 1 in location 1034
run/0: instruction print-character/18
run/0: reply {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "same-as-ingredient": "0"]}
mem/0: location 1169 is 1031
run/0: instruction clear-line/11
run/0: loop {name: "", value: -4, type: , properties: ["": ]}
run/0: ingredient 0 is -4
run/0: jumping to instruction 8
run/0: instruction clear-line/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "column", value: 3, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "n", value: 2, type: 1, properties: ["n": "integer"]}
run/0: ingredient 0 is column
mem/0: location 1140 is 1034
mem/0: location 1034 is 1
run/0: ingredient 1 is n
mem/0: location 1139 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1142
run/0: instruction clear-line/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 2, type: , properties: ["": ]}
mem/0: location 1142 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction clear-line/10
run/0: print-character {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]}, {name: " ", value: 0, type: 0, properties: [" ": "literal-string"]}
mem/0: location 1138 is 1031
run/0: instruction print-character/0
run/0: {name: "default-space", value: 0, type: 2-5-1, properties: ["default-space": "address":"array":"location"]} <- new {name: "location", value: 1, type: 0, properties: ["location": "type"]}, {name: "30", value: 30, type: 0, properties: ["30": "literal"]}
mem/0: array size is 30
mem/0: new alloc: 1198
run/0: instruction print-character/1
run/0: {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]} <- next-ingredient 
run/0: product 0 is 1031
mem/0: storing 1031 in location 1200
run/0: instruction print-character/2
run/0: {name: "c", value: 2, type: 4, properties: ["c": "character"]} <- next-ingredient 
run/0: product 0 is 0
mem/0: storing 0 in location 1201
run/0: instruction print-character/4
run/0: break-unless {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]}, {name: "", value: 14, type: , properties: ["": ]}
mem/0: location 1200 is 1031
run/0: ingredient 0 is 1031
run/0: jump-unless fell through
run/0: instruction print-character/5
run/0: {name: "row", value: 3, type: 2-1, properties: ["row": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-row", value: 2, type: 0, properties: ["cursor-row": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1200 is 1031
run/0: ingredient 1 is cursor-row
run/0: address to copy is 1033
run/0: product 0 is 1033
mem/0: storing 1033 in location 1202
run/0: instruction print-character/6
run/0: {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-column", value: 3, type: 0, properties: ["cursor-column": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1200 is 1031
run/0: ingredient 1 is cursor-column
run/0: address to copy is 1034
run/0: product 0 is 1034
mem/0: storing 1034 in location 1203
run/0: instruction print-character/7
run/0: {name: "width", value: 5, type: 1, properties: ["width": "integer"]} <- get {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "num-columns", value: 1, type: 0, properties: ["num-columns": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1200 is 1031
run/0: ingredient 1 is num-columns
run/0: address to copy is 1032
run/0: its type is 1
mem/0: location 1032 is 3
run/0: product 0 is 3
mem/0: storing 3 in location 1204
run/0: instruction print-character/8
run/0: {name: "index", value: 6, type: 1, properties: ["index": "integer"]} <- multiply {name: "row", value: 3, type: 2-1, properties: ["row": "address":"integer", "deref": ]}, {name: "width", value: 5, type: 1, properties: ["width": "integer"]}
run/0: ingredient 0 is row
mem/0: location 1202 is 1033
mem/0: location 1033 is 0
run/0: ingredient 1 is width
mem/0: location 1204 is 3
run/0: ingredient 1 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1205
run/0: instruction print-character/9
run/0: {name: "index", value: 6, type: 1, properties: ["index": "integer"]} <- add {name: "index", value: 6, type: 1, properties: ["index": "integer"]}, {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}
run/0: ingredient 0 is index
mem/0: location 1205 is 0
run/0: ingredient 1 is column
mem/0: location 1203 is 1034
mem/0: location 1034 is 1
run/0: product 0 is 1
mem/0: storing 1 in location 1205
run/0: instruction print-character/10
run/0: {name: "buf", value: 7, type: 2-5-4, properties: ["buf": "address":"array":"character"]} <- get {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "data", value: 4, type: 0, properties: ["data": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1200 is 1031
run/0: ingredient 1 is data
run/0: address to copy is 1035
run/0: its type is 2
mem/0: location 1035 is 1036
run/0: product 0 is 1036
mem/0: storing 1036 in location 1206
run/0: instruction print-character/11
run/0: {name: "cursor", value: 8, type: 2-4, properties: ["cursor": "address":"character"]} <- index-address {name: "buf", value: 7, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}, {name: "index", value: 6, type: 1, properties: ["index": "integer"]}
run/0: ingredient 0 is buf
mem/0: location 1206 is 1036
run/0: ingredient 1 is {name: "index", value: 6, type: 1, properties: ["index": "integer"]}
mem/0: location 1205 is 1
run/0: address to copy is 1038
run/0: product 0 is 1038
mem/0: storing 1038 in location 1207
run/0: instruction print-character/12
run/0: {name: "cursor", value: 8, type: 2-4, properties: ["cursor": "address":"character", "deref": ]} <- copy {name: "c", value: 2, type: 4, properties: ["c": "character"]}
run/0: ingredient 0 is c
mem/0: location 1201 is 0
mem/0: location 1207 is 1038
mem/0: storing 0 in location 1038
run/0: instruction print-character/14
run/0: {name: "at-right?", value: 9, type: 3, properties: ["at-right?": "boolean"]} <- equal {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "width", value: 5, type: 1, properties: ["width": "integer"]}
run/0: ingredient 0 is column
mem/0: location 1203 is 1034
mem/0: location 1034 is 1
run/0: ingredient 1 is width
mem/0: location 1204 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1208
run/0: instruction print-character/15
run/0: break-if {name: "at-right?", value: 9, type: 3, properties: ["at-right?": "boolean"]}, {name: "", value: 1, type: , properties: ["": ]}
mem/0: location 1208 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction print-character/16
run/0: {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]} <- add {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "1", value: 1, type: 0, properties: ["1": "literal"]}
run/0: ingredient 0 is column
mem/0: location 1203 is 1034
mem/0: location 1034 is 1
run/0: ingredient 1 is 1
run/0: product 0 is 2
mem/0: location 1203 is 1034
mem/0: storing 2 in location 1034
run/0: instruction print-character/18
run/0: reply {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "same-as-ingredient": "0"]}
mem/0: location 1200 is 1031
run/0: instruction clear-line/11
run/0: loop {name: "", value: -4, type: , properties: ["": ]}
run/0: ingredient 0 is -4
run/0: jumping to instruction 8
run/0: instruction clear-line/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "column", value: 3, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "n", value: 2, type: 1, properties: ["n": "integer"]}
run/0: ingredient 0 is column
mem/0: location 1140 is 1034
mem/0: location 1034 is 2
run/0: ingredient 1 is n
mem/0: location 1139 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1142
run/0: instruction clear-line/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 2, type: , properties: ["": ]}
mem/0: location 1142 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction clear-line/10
run/0: print-character {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]}, {name: " ", value: 0, type: 0, properties: [" ": "literal-string"]}
mem/0: location 1138 is 1031
run/0: instruction print-character/0
run/0: {name: "default-space", value: 0, type: 2-5-1, properties: ["default-space": "address":"array":"location"]} <- new {name: "location", value: 1, type: 0, properties: ["location": "type"]}, {name: "30", value: 30, type: 0, properties: ["30": "literal"]}
mem/0: array size is 30
mem/0: new alloc: 1229
run/0: instruction print-character/1
run/0: {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]} <- next-ingredient 
run/0: product 0 is 1031
mem/0: storing 1031 in location 1231
run/0: instruction print-character/2
run/0: {name: "c", value: 2, type: 4, properties: ["c": "character"]} <- next-ingredient 
run/0: product 0 is 0
mem/0: storing 0 in location 1232
run/0: instruction print-character/4
run/0: break-unless {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen"]}, {name: "", value: 14, type: , properties: ["": ]}
mem/0: location 1231 is 1031
run/0: ingredient 0 is 1031
run/0: jump-unless fell through
run/0: instruction print-character/5
run/0: {name: "row", value: 3, type: 2-1, properties: ["row": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-row", value: 2, type: 0, properties: ["cursor-row": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1231 is 1031
run/0: ingredient 1 is cursor-row
run/0: address to copy is 1033
run/0: product 0 is 1033
mem/0: storing 1033 in location 1233
run/0: instruction print-character/6
run/0: {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer"]} <- get-address {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "cursor-column", value: 3, type: 0, properties: ["cursor-column": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1231 is 1031
run/0: ingredient 1 is cursor-column
run/0: address to copy is 1034
run/0: product 0 is 1034
mem/0: storing 1034 in location 1234
run/0: instruction print-character/7
run/0: {name: "width", value: 5, type: 1, properties: ["width": "integer"]} <- get {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "num-columns", value: 1, type: 0, properties: ["num-columns": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1231 is 1031
run/0: ingredient 1 is num-columns
run/0: address to copy is 1032
run/0: its type is 1
mem/0: location 1032 is 3
run/0: product 0 is 3
mem/0: storing 3 in location 1235
run/0: instruction print-character/8
run/0: {name: "index", value: 6, type: 1, properties: ["index": "integer"]} <- multiply {name: "row", value: 3, type: 2-1, properties: ["row": "address":"integer", "deref": ]}, {name: "width", value: 5, type: 1, properties: ["width": "integer"]}
run/0: ingredient 0 is row
mem/0: location 1233 is 1033
mem/0: location 1033 is 0
run/0: ingredient 1 is width
mem/0: location 1235 is 3
run/0: ingredient 1 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1236
run/0: instruction print-character/9
run/0: {name: "index", value: 6, type: 1, properties: ["index": "integer"]} <- add {name: "index", value: 6, type: 1, properties: ["index": "integer"]}, {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}
run/0: ingredient 0 is index
mem/0: location 1236 is 0
run/0: ingredient 1 is column
mem/0: location 1234 is 1034
mem/0: location 1034 is 2
run/0: product 0 is 2
mem/0: storing 2 in location 1236
run/0: instruction print-character/10
run/0: {name: "buf", value: 7, type: 2-5-4, properties: ["buf": "address":"array":"character"]} <- get {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "deref": ]}, {name: "data", value: 4, type: 0, properties: ["data": "offset"]}
run/0: ingredient 0 is x
mem/0: location 1231 is 1031
run/0: ingredient 1 is data
run/0: address to copy is 1035
run/0: its type is 2
mem/0: location 1035 is 1036
run/0: product 0 is 1036
mem/0: storing 1036 in location 1237
run/0: instruction print-character/11
run/0: {name: "cursor", value: 8, type: 2-4, properties: ["cursor": "address":"character"]} <- index-address {name: "buf", value: 7, type: 2-5-4, properties: ["buf": "address":"array":"character", "deref": ]}, {name: "index", value: 6, type: 1, properties: ["index": "integer"]}
run/0: ingredient 0 is buf
mem/0: location 1237 is 1036
run/0: ingredient 1 is {name: "index", value: 6, type: 1, properties: ["index": "integer"]}
mem/0: location 1236 is 2
run/0: address to copy is 1039
run/0: product 0 is 1039
mem/0: storing 1039 in location 1238
run/0: instruction print-character/12
run/0: {name: "cursor", value: 8, type: 2-4, properties: ["cursor": "address":"character", "deref": ]} <- copy {name: "c", value: 2, type: 4, properties: ["c": "character"]}
run/0: ingredient 0 is c
mem/0: location 1232 is 0
mem/0: location 1238 is 1039
mem/0: storing 0 in location 1039
run/0: instruction print-character/14
run/0: {name: "at-right?", value: 9, type: 3, properties: ["at-right?": "boolean"]} <- equal {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "width", value: 5, type: 1, properties: ["width": "integer"]}
run/0: ingredient 0 is column
mem/0: location 1234 is 1034
mem/0: location 1034 is 2
run/0: ingredient 1 is width
mem/0: location 1235 is 3
run/0: product 0 is 0
mem/0: storing 0 in location 1239
run/0: instruction print-character/15
run/0: break-if {name: "at-right?", value: 9, type: 3, properties: ["at-right?": "boolean"]}, {name: "", value: 1, type: , properties: ["": ]}
mem/0: location 1239 is 0
run/0: ingredient 0 is 0
run/0: jump-if fell through
run/0: instruction print-character/16
run/0: {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]} <- add {name: "column", value: 4, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "1", value: 1, type: 0, properties: ["1": "literal"]}
run/0: ingredient 0 is column
mem/0: location 1234 is 1034
mem/0: location 1034 is 2
run/0: ingredient 1 is 1
run/0: product 0 is 3
mem/0: location 1234 is 1034
mem/0: storing 3 in location 1034
run/0: instruction print-character/18
run/0: reply {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "same-as-ingredient": "0"]}
mem/0: location 1231 is 1031
run/0: instruction clear-line/11
run/0: loop {name: "", value: -4, type: , properties: ["": ]}
run/0: ingredient 0 is -4
run/0: jumping to instruction 8
run/0: instruction clear-line/8
run/0: {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]} <- greater-or-equal {name: "column", value: 3, type: 2-1, properties: ["column": "address":"integer", "deref": ]}, {name: "n", value: 2, type: 1, properties: ["n": "integer"]}
run/0: ingredient 0 is column
mem/0: location 1140 is 1034
mem/0: location 1034 is 3
run/0: ingredient 1 is n
mem/0: location 1139 is 3
run/0: product 0 is 1
mem/0: storing 1 in location 1142
run/0: instruction clear-line/9
run/0: break-if {name: "done?", value: 5, type: 3, properties: ["done?": "boolean"]}, {name: "", value: 2, type: , properties: ["": ]}
mem/0: location 1142 is 1
run/0: ingredient 0 is 1
run/0: ingredient 1 is 
run/0: jumping to instruction 12
run/0: instruction clear-line/13
run/0: {name: "column", value: 3, type: 2-1, properties: ["column": "address":"integer", "deref": ]} <- copy {name: "original-column", value: 4, type: 1, properties: ["original-column": "integer"]}
run/0: ingredient 0 is original-column
mem/0: location 1141 is 0
mem/0: location 1140 is 1034
mem/0: storing 0 in location 1034
run/0: instruction clear-line/14
run/0: reply {name: "x", value: 1, type: 2-11, properties: ["x": "address":"screen", "same-as-ingredient": "0"]}
mem/0: location 1138 is 1031
run/0: result 0 is 1031
mem/0: storing 1031 in location 1
run/0: instruction test-clear-line-erases-printed-characters/4
run/0: {name: "2", value: 2, type: 2-5-4, properties: ["2": "address":"array":"character"]} <- get {name: "1", value: 1, type: 2-11, properties: ["1": "address":"screen", "deref": ]}, {name: "data", value: 4, type: 0, properties: ["data": "offset"]}
run/0: ingredient 0 is 1
mem/0: location 1 is 1031
run/0: ingredient 1 is data
run/0: address to copy is 1035
run/0: its type is 2
mem/0: location 1035 is 1036
run/0: product 0 is 1036
mem/0: storing 1036 in location 2
run/0: instruction test-clear-line-erases-printed-characters/5
run/0: {name: "3", value: 3, type: 5-4, properties: ["3": "array":"character"]} <- copy {name: "2", value: 2, type: 2-5-4, properties: ["2": "address":"array":"character", "deref": ]}
run/0: ingredient 0 is 2
mem/0: location 2 is 1036
mem/0: location 1036 is 6
mem/0: location 1037 is 0
mem/0: location 1038 is 0
mem/0: location 1039 is 0
mem/0: location 1040 is 0
mem/0: location 1041 is 0
mem/0: location 1042 is 0
mem/0: storing 6 in location 3
mem/0: storing 0 in location 4
mem/0: storing 0 in location 5
mem/0: storing 0 in location 6
mem/0: storing 0 in location 7
mem/0: storing 0 in location 8
mem/0: storing 0 in location 9