-
Notifications
You must be signed in to change notification settings - Fork 1
/
last_result.txt
566 lines (430 loc) · 23.4 KB
/
last_result.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
Found keyword: class
Found constant: Note
Found line feed:
Found identifier: attr_accessor
Found special symbol: :
Found identifier: title
Found special symbol: ,
Found special symbol: :
Found identifier: content
Found line feed:
Found line feed:
Found keyword: def
Found identifier: initialize
Found bracket: (
Found identifier: title
Found special symbol: ,
Found identifier: content
Found bracket: )
Found line feed:
Found var name: @title
Found arithmetic operation: =
Found identifier: title
Found line feed:
Found var name: @content
Found arithmetic operation: =
Found identifier: content
Found line feed:
Found keyword: end
Found line feed:
Found line feed:
Found keyword: def
Found identifier: display
Found line feed:
Found identifier: puts
String literal: "Caption: #{@title}"
Found line feed:
Found identifier: puts
String literal: "Content: #{@content}"
Found line feed:
Found keyword: end
Found line feed:
Found keyword: end
Found line feed:
Found line feed:
Found keyword: class
Found constant: Notebook
Found line feed:
Found keyword: def
Found identifier: initialize
Found line feed:
Found var name: @notes
Found arithmetic operation: =
Found bracket: [
Found bracket: ]
Found line feed:
Found keyword: end
Found line feed:
Found line feed:
Found keyword: def
Found identifier: add_note
Found bracket: (
Found identifier: note
Found bracket: )
Found line feed:
Found var name: @notes
Found comparison operation: <<
Found identifier: note
Found single-line comment: one line comment # . + @notes
Found line feed:
Found keyword: end
Found line feed:
Found line feed:
Found single-line comment: Multiline comment test
Found line feed:
Found multiline comment:
My
multiline
comment
here
\\word
\word
end
def
=end
Found line feed:
Found single-line comment: Comment test
Found line feed:
Found keyword: def
Found identifier: view_notes
Found line feed:
Found identifier: puts
String literal: "List of notes: \word test \wo ' rd \obl \' a lablabla"
Found line feed:
Found identifier: puts
String literal: "Text " Text \" text"
Found line feed:
Found var name: @notes
Found special symbol: .
Found identifier: each_with_index
Found keyword: do
Found operation: |
Found identifier: note
Found special symbol: ,
Found identifier: index
Found operation: |
Found line feed:
Found identifier: puts
Found string ""
Found interpolation: + (
Found identifier: index
Found arithmetic operation: +
Found integer: 1
Found interpolation: ) +
Found string ". "
Found interpolation: + (
Found identifier: note
Found special symbol: .
Found identifier: title
Found interpolation: ) +
String literal: ""
Found line feed:
Found keyword: end
Found line feed:
Found line feed:
Found identifier: print
String literal: "Select the note number to view (or 0 to exit): "
Found line feed:
Found identifier: choice
Found arithmetic operation: =
Found identifier: gets
Found special symbol: .
Found identifier: chomp
Found special symbol: .
Found identifier: to_i
Found line feed:
Found line feed:
Found keyword: if
Found identifier: choice
Found arithmetic operation: ==
Found integer: 0
Found line feed:
Found keyword: return
Found line feed:
Found keyword: elsif
Found identifier: choice
Found arithmetic operation: >=
Found integer: 1
Found operation: &&
Found identifier: choice
Found arithmetic operation: <=
Found var name: @notes
Found special symbol: .
Found identifier: length
Found line feed:
Found var name: @notes
Found bracket: [
Found identifier: choice
Found arithmetic operation: -
Found integer: 1
Found bracket: ]
Found special symbol: .
Found identifier: display
Found line feed:
Found keyword: else
Found line feed:
Found identifier: puts
String literal: "Wrong selection. Please select an existing note number."
Found line feed:
Found keyword: end
Found line feed:
Found keyword: end
Found line feed:
Found keyword: end
Found line feed:
Found line feed:
Found identifier: notebook
Found arithmetic operation: =
Found constant: Notebook
Found special symbol: .
Found identifier: new
Found line feed:
Found line feed:
Found identifier: loop
Found keyword: do
Found line feed:
Found identifier: puts
String literal: "
What do you want to do?"
Found line feed:
Found identifier: puts
String literal: "1. Create a new note"
Found line feed:
Found identifier: puts
String literal: "2. View existing notes"
Found line feed:
Found identifier: puts
String literal: "3. Get out"
Found line feed:
Found identifier: print
String literal: "Enter the number of the selected option: "
Found line feed:
Found line feed:
Found identifier: choice
Found arithmetic operation: =
Found identifier: gets
Found special symbol: .
Found identifier: chomp
Found special symbol: .
Found identifier: to_i
Found line feed:
Found line feed:
Found keyword: case
Found identifier: choice
Found line feed:
Found keyword: when
Found integer: 1
Found line feed:
Found identifier: print
String literal: "Enter the title of the note: "
Found line feed:
Found identifier: title
Found arithmetic operation: =
Found identifier: gets
Found special symbol: .
Found identifier: chomp
Found line feed:
Found identifier: print
String literal: "Enter the content of the note: "
Found line feed:
Found identifier: content
Found arithmetic operation: =
Found identifier: gets
Found special symbol: .
Found identifier: chomp
Found line feed:
Found identifier: note
Found arithmetic operation: =
Found constant: Note
Found special symbol: .
Found identifier: new
Found bracket: (
Found identifier: title
Found special symbol: ,
Found identifier: content
Found bracket: )
Found line feed:
Found identifier: notebook
Found special symbol: .
Found identifier: add_note
Found bracket: (
Found identifier: note
Found bracket: )
Found line feed:
Found identifier: puts
String literal: "The note has been successfully created!"
Found line feed:
Found keyword: when
Found integer: 2
Found line feed:
Found identifier: notebook
Found special symbol: .
Found identifier: view_notes
Found line feed:
Found keyword: when
Found integer: 3
Found line feed:
Found identifier: puts
String literal: "Goodbye!"
Found line feed:
Found keyword: break
Found line feed:
Found keyword: else
Found line feed:
Found identifier: puts
String literal: "Incorrect selection. Please select an existing option."
Found line feed:
Found keyword: end
Found line feed:
Found keyword: end
Found line feed:
Found line feed:
Found line feed:
Found single-line comment: Checking the numbers
Found line feed:
Found single-line comment: Underscore error at the beginning
Found line feed:
Found identifier: puts
Error: Underscore at the start of a number: _0.2234
Found line feed:
Found single-line comment: Error underline at the end
Found line feed:
Found identifier: puts
Error: Underscore at the end of a number: 213_
Found line feed:
Found single-line comment: right
Found line feed:
Found identifier: puts
Found integer: 2123123
Found line feed:
Found single-line comment: right
Found line feed:
Found identifier: puts
Found floating-point number: 2.123000
Found line feed:
Found single-line comment: Error point at the beginning
Found line feed:
Found identifier: puts
Error: Dot at the start of a number: .234
Found line feed:
Found single-line comment: Error double dot
Found line feed:
Found identifier: puts
Error: Dot is repeated several times in a row: 12..33
Found line feed:
Found single-line comment: Error point at the end
Found line feed:
Found identifier: puts
Found floating-point number: 123.000000
Found line feed:
Found single-line comment: Error double underscore
Found line feed:
Found identifier: puts
Error: Underscore is repeated several times in a row: 12__33
Found line feed:
Found single-line comment: Checking the strings
Found line feed:
Found single-line comment: Correct string
Found line feed:
Found identifier: puts
String literal: "Correct string"
Found line feed:
Found single-line comment: String with \
Found line feed:
Found identifier: puts
String literal: "String "
Found line feed:
Found single-line comment: String with \\
Found line feed:
Found identifier: puts
String literal: "String with \word"
Found line feed:
Found single-line comment: Correct number 123e12
Found line feed:
Found identifier: puts
Found number with exponent: 123000000000000.000000
Found line feed:
Found single-line comment: Correct number 12.2e1
Found line feed:
Found identifier: puts
Found floating-point number with exponent: 122.000000
Found line feed:
Found single-line comment: Error: incorrect number .e12
Found line feed:
Found identifier: puts
Found special symbol: .
Found identifier: e12
Found line feed:
Found single-line comment: Correct number 0x12e12
Found line feed:
Found identifier: puts
Found hexadecimal integer: 77330
Found line feed:
Found single-line comment: Error: Incorrect number _e12
Found line feed:
Found identifier: puts
Found identifier: _e12
Found line feed:
Found single-line comment: Standart 12_13_14
Found line feed:
Found identifier: puts
Found integer: 121314
Found line feed:
Found single-line comment: Float 12.24_123
Found line feed:
Found identifier: puts
Found floating-point number: 12.241230
Found line feed:
Found single-line comment: Float 12.24_123.12
Found line feed:
Found identifier: puts
Error: Dot is repeated several times in a row: 12.24_123.12
Found line feed:
Found single-line comment: Binary 0b1_0111_01
Found line feed:
Found identifier: puts
Found binary integer: -914624160
Found line feed:
Found single-line comment: Binary 0b1_0111
Found line feed:
Found identifier: puts
Found binary integer: -914624125
Found line feed:
Found single-line comment: Hexadecimal 0x1_0111_01
Found line feed:
Found identifier: puts
Found hexadecimal integer: 16847105
Found line feed:
Found single-line comment: Hexadecimal 0x1_0111
Found line feed:
Found identifier: puts
Found hexadecimal integer: 65809
Found line feed:
Found single-line comment: Standart 3_2e10_2
Found line feed:
Found identifier: puts
Found number with exponent: 31999999999999999265584424487850772110298967037572800196159871191423790469785277161704361423408369500160.000000
Found line feed:
Found single-line comment: 1.2_2_2e10
Found line feed:
Found identifier: puts
Found floating-point number with exponent: 12220000000.000000
Found line feed:
Found single-line comment: Digit
Found line feed:
Found integer: 101111
Found line feed:
Found identifier: puts
Found floating-point number with exponent: 1200000000000.000000
Found line feed:
Found identifier: puts
Found number with exponent: 2000000000000.000000
Found line feed:
Found identifier: puts
Error: Underscore is repeated several times in a row: 0x11__10
Found line feed:
Found identifier: puts
Error: Underscore is repeated several times in a row: 0b10__10
Found line feed:
Found identifier: puts
String literal: "Ya stroka stroka pupupu"