This repository has been archived by the owner on Dec 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfinal-pitch.log
1348 lines (1348 loc) · 85.1 KB
/
final-pitch.log
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
[?][LOG SYSTEM] => Created a log file successfully!
[!][Compiler Manager] => The workstation directory has been set to "F:\files\EnderCommunity\Projects\Murmur\"
[?][Compiler Manager] => Testing the `writeLogLine` function
[?][Compiler Manager] => Starting the preprocessor.
[?][Preprocessor] => Preprocessor started!
[?][Preprocessor] => The header has been detected!
[?][Preprocessor] => The header flags have been processed successfully!
[?][Preprocessor][2, 1] => New processing loop started.
[!][Preprocessor] => // ^ The header is used to give the compiler nessessary information before it
[?][Preprocessor][2, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][3, 1] => New processing loop started.
[!][Preprocessor] => // starts compiling the code. Flags start with the operators "--". If you do not
[?][Preprocessor][3, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][4, 1] => New processing loop started.
[!][Preprocessor] => // wish to pass any information to the compiler, you can just remove it.
[?][Preprocessor][4, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][6, 1] => New processing loop started.
[!][Preprocessor] => // The available flags are:
[?][Preprocessor][6, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][7, 1] => New processing loop started.
[!][Preprocessor] => // "no-comments": can be used to tell the compiler to not look for comments in this
[?][Preprocessor][7, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][8, 1] => New processing loop started.
[!][Preprocessor] => // file
[?][Preprocessor][8, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][9, 1] => New processing loop started.
[!][Preprocessor] => // "no-preprocessor-methods": can be used to tell the compiler that this file does
[?][Preprocessor][9, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][10, 1] => New processing loop started.
[!][Preprocessor] => // not contain any preprocessor methods
[?][Preprocessor][10, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][11, 1] => New processing loop started.
[!][Preprocessor] => // "skip-processor": can be used to tell the compiler to not compile the code after
[?][Preprocessor][11, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][12, 1] => New processing loop started.
[!][Preprocessor] => // the header, and jump to the C compiler compiling stage.
[?][Preprocessor][12, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][14, 1] => New processing loop started.
[!][Preprocessor] => /*
[?][Preprocessor][14, 1] => A multi-linear comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][16, 5] => New processing loop started.
[!][Preprocessor] => Murmur | (C) EnderCommunity
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][17, 5] => New processing loop started.
[!][Preprocessor] => ------------------------------------------------------------------------------------
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][18, 5] => New processing loop started.
[!][Preprocessor] => This is a pitch file for Murmur that will include the syntax and structure
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][19, 5] => New processing loop started.
[!][Preprocessor] => of Murmur, and all the functions that it can use.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][21, 5] => New processing loop started.
[!][Preprocessor] => (!) This is nowhere near being final, this is all just a pitch.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][23, 1] => New processing loop started.
[!][Preprocessor] => */
[?][Preprocessor][23, 2] => The end of the multi-linear comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][25, 1] => New processing loop started.
[!][Preprocessor] => // (!) All the functions used outside of groups are seen by the compiler as
[?][Preprocessor][25, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][26, 1] => New processing loop started.
[!][Preprocessor] => // preprocessor functions! So any normal code outside of groups that is not a
[?][Preprocessor][26, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][27, 1] => New processing loop started.
[!][Preprocessor] => // preprocessor-related feature will cause the compiler to exit with an error.
[?][Preprocessor][27, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][29, 1] => New processing loop started.
[!][Preprocessor] => // using system.io; //Tell the compiler that the program is going to use the
[?][Preprocessor][29, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][30, 18] => New processing loop started.
[!][Preprocessor] => //input/output library in the folder "system"
[?][Preprocessor][30, 18] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][31, 1] => New processing loop started.
[!][Preprocessor] => using test;
[?][Preprocessor][31, 1] => Checking for preprocessor methods...
[?][Preprocessor][31, 1] => A 'using' statement has been detected!
[?][Preprocessor] => Last line detected!
[?][Preprocessor][1, 1] => New processing loop started.
[!][Preprocessor] => "Test 1!";
[?][Preprocessor][1, 1] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][32, 1] => New processing loop started.
[!][Preprocessor] => using foldertest.test2;
[?][Preprocessor][32, 1] => Checking for preprocessor methods...
[?][Preprocessor][32, 1] => A 'using' statement has been detected!
[?][Preprocessor] => Last line detected!
[?][Preprocessor][1, 1] => New processing loop started.
[!][Preprocessor] => "Test 2!";
[?][Preprocessor][1, 1] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][33, 1] => New processing loop started.
[!][Preprocessor] => // using array;
[?][Preprocessor][33, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][34, 1] => New processing loop started.
[!][Preprocessor] => // using file; // The "file" type should be managed
[?][Preprocessor][34, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][35, 1] => New processing loop started.
[!][Preprocessor] => // // by this library
[?][Preprocessor][35, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][36, 1] => New processing loop started.
[!][Preprocessor] => // using io;
[?][Preprocessor][36, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][38, 1] => New processing loop started.
[!][Preprocessor] => import "final-pitch-lib.lib.mur"; // Import another Murmur file!
[?][Preprocessor][38, 35] => A single line comment has been detected!
[?][Preprocessor][38, 1] => Checking for preprocessor methods...
[?][Preprocessor][38, 1] => An 'import' statement has been detected!
[?][Preprocessor][38, 1] => Importing the content of the file <F:\files\EnderCommunity\Projects\Murmur\final-pitch-lib.lib.mur> into the temporary output file.
[?][Preprocessor] => The header has been detected!
[?][Preprocessor] => The header flags have been processed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][3, 1] => New processing loop started.
[!][Preprocessor] => import "another-library.lib.mur";
[?][Preprocessor][3, 1] => Checking for preprocessor methods...
[?][Preprocessor][3, 1] => An 'import' statement has been detected!
[?][Preprocessor][3, 1] => Importing the content of the file <F:\files\EnderCommunity\Projects\Murmur\another-library.lib.mur> into the temporary output file.
[?][Preprocessor][1, 1] => New processing loop started.
[!][Preprocessor] => //import "hi.co";
[?][Preprocessor][1, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][2, 1] => New processing loop started.
[!][Preprocessor] => // ^ this isn't a .mur file!
[?][Preprocessor][2, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][3, 1] => New processing loop started.
[!][Preprocessor] => // this will cause the
[?][Preprocessor][3, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][4, 1] => New processing loop started.
[!][Preprocessor] => // compiler to stop!
[?][Preprocessor][4, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][6, 1] => New processing loop started.
[!][Preprocessor] => group AnotherLibrary {
[?][Preprocessor][6, 1] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][8, 5] => New processing loop started.
[!][Preprocessor] => class MyClass { // Make `<name>:int` possible
[?][Preprocessor][8, 21] => A single line comment has been detected!
[?][Preprocessor][8, 5] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][10, 9] => New processing loop started.
[!][Preprocessor] => func:int NumOne(){
[?][Preprocessor][10, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][12, 13] => New processing loop started.
[!][Preprocessor] => return 1;
[?][Preprocessor][12, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][14, 9] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][14, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][16, 5] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][16, 5] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => Last line detected!
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][18, 1] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][18, 1] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor][3, 1] => Finished importing the content of the file <F:\files\EnderCommunity\Projects\Murmur\another-library.lib.mur> into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][4, 1] => New processing loop started.
[!][Preprocessor] => tell "DLL::root:myLib.dll"; // You can use the "tell"
[?][Preprocessor][4, 29] => A single line comment has been detected!
[?][Preprocessor][4, 1] => Checking for preprocessor methods...
[?][Preprocessor][4, 1] => A 'tell' statement has been detected!
[?][Preprocessor][4, 1] => Saving the content of the tell method into the `.tll` output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][5, 29] => New processing loop started.
[!][Preprocessor] => // method to send messages
[?][Preprocessor][5, 29] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][6, 29] => New processing loop started.
[!][Preprocessor] => // to the bundler
[?][Preprocessor][6, 29] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][7, 1] => New processing loop started.
[!][Preprocessor] => tell "FLAG::myflag";
[?][Preprocessor][7, 1] => Checking for preprocessor methods...
[?][Preprocessor][7, 1] => A 'tell' statement has been detected!
[?][Preprocessor][7, 1] => Saving the content of the tell method into the `.tll` output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][9, 1] => New processing loop started.
[!][Preprocessor] => group::public LibFilNam {
[?][Preprocessor][9, 1] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][11, 5] => New processing loop started.
[!][Preprocessor] => class::public section {
[?][Preprocessor][11, 5] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][13, 9] => New processing loop started.
[!][Preprocessor] => func:string myFunction(input:int) {
[?][Preprocessor][13, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][15, 13] => New processing loop started.
[!][Preprocessor] => var:string output;
[?][Preprocessor][15, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][17, 13] => New processing loop started.
[!][Preprocessor] => <<<
[?][Preprocessor][17, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][18, 13] => New processing loop started.
[!][Preprocessor] => /*Do some stuff in C*/
[?][Preprocessor][18, 13] => A multi-linear comment has been detected!
[?][Preprocessor][18, 34] => The end of the multi-linear comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][19, 13] => New processing loop started.
[!][Preprocessor] => 0;
[?][Preprocessor][19, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][20, 13] => New processing loop started.
[!][Preprocessor] => >>>
[?][Preprocessor][20, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][22, 13] => New processing loop started.
[!][Preprocessor] => return output;
[?][Preprocessor][22, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][24, 9] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][24, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][26, 5] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][26, 5] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => Last line detected!
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][28, 1] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][28, 1] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor][38, 1] => Finished importing the content of the file <F:\files\EnderCommunity\Projects\Murmur\final-pitch-lib.lib.mur> into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][40, 1] => New processing loop started.
[!][Preprocessor] => define ZERO 0; // You can use the `define` function to define a var that
[?][Preprocessor][40, 16] => A single line comment has been detected!
[?][Preprocessor][40, 1] => Checking for preprocessor methods...
[?][Preprocessor][40, 1] => A 'define' statement has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][41, 16] => New processing loop started.
[!][Preprocessor] => // will be replaced by the provided value before the execution
[?][Preprocessor][41, 16] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][42, 16] => New processing loop started.
[!][Preprocessor] => // of this code
[?][Preprocessor][42, 16] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][44, 1] => New processing loop started.
[!][Preprocessor] => setsize int 2; // Set a custom size of memory (in bytes) to allocate for any type
[?][Preprocessor][44, 16] => A single line comment has been detected!
[?][Preprocessor][44, 1] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][45, 1] => New processing loop started.
[!][Preprocessor] => setsize double 10; // You can do the same with all the built-in types
[?][Preprocessor][45, 20] => A single line comment has been detected!
[?][Preprocessor][45, 1] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][47, 1] => New processing loop started.
[!][Preprocessor] => // import "path/to/my/file2.mur"; //You need to pay attention to the importing order
[?][Preprocessor][47, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][48, 1] => New processing loop started.
[!][Preprocessor] => // of your files! For example, "file.mur" will not be able to use the custom set
[?][Preprocessor][48, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][49, 1] => New processing loop started.
[!][Preprocessor] => // amount of memory for the 'int' var, whereas "file2.mur" will be able to
[?][Preprocessor][49, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][50, 1] => New processing loop started.
[!][Preprocessor] => // use it with no problem whatsoever.
[?][Preprocessor][50, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][52, 1] => New processing loop started.
[!][Preprocessor] => // (!) Modules may not be necessary anymore with this new arrangement
[?][Preprocessor][52, 1] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][54, 1] => New processing loop started.
[!][Preprocessor] => group::public FinalPitch { // Groups can help you keep a whole block of code within one
[?][Preprocessor][54, 28] => A single line comment has been detected!
[?][Preprocessor][54, 1] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][55, 15] => New processing loop started.
[!][Preprocessor] => // structure to better organise your code
[?][Preprocessor][55, 15] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][57, 5] => New processing loop started.
[!][Preprocessor] => // Groups can only contain classes, any normal code here will cause the
[?][Preprocessor][57, 5] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][58, 5] => New processing loop started.
[!][Preprocessor] => // program to crash.
[?][Preprocessor][58, 5] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][60, 5] => New processing loop started.
[!][Preprocessor] => class::public Program { // Classes can be used to completely separate functions from one
[?][Preprocessor][60, 29] => A single line comment has been detected!
[?][Preprocessor][60, 5] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][61, 21] => New processing loop started.
[!][Preprocessor] => // another, in case you wanted to prevent other classes from
[?][Preprocessor][61, 21] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][62, 21] => New processing loop started.
[!][Preprocessor] => // accessing some vars or functions
[?][Preprocessor][62, 21] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][64, 9] => New processing loop started.
[!][Preprocessor] => // These at class-level variables!
[?][Preprocessor][64, 9] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][65, 9] => New processing loop started.
[!][Preprocessor] => // They can only be accessed using the class object ("this", or any class reference)
[?][Preprocessor][65, 9] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][66, 9] => New processing loop started.
[!][Preprocessor] => var::public:int globA = 0;
[?][Preprocessor][66, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][67, 9] => New processing loop started.
[!][Preprocessor] => var::public:double globB = 0.0;
[?][Preprocessor][67, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][68, 9] => New processing loop started.
[!][Preprocessor] => var::public:float globC = 0.0;
[?][Preprocessor][68, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][69, 9] => New processing loop started.
[!][Preprocessor] => var::public:char globD = 'D';
[?][Preprocessor][69, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][70, 9] => New processing loop started.
[!][Preprocessor] => var::public:string globE = "Global E";
[?][Preprocessor][70, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][71, 9] => New processing loop started.
[!][Preprocessor] => var::public:bool globF = true;
[?][Preprocessor][71, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][72, 9] => New processing loop started.
[!][Preprocessor] => var::public:file globG = new file.stream("path/to/my/file.txt");
[?][Preprocessor][72, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][73, 9] => New processing loop started.
[!][Preprocessor] => var::public:hex globH = 0xFF;
[?][Preprocessor][73, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][74, 9] => New processing loop started.
[!][Preprocessor] => var::public:string[] globI = new array.string(6);
[?][Preprocessor][74, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][75, 9] => New processing loop started.
[!][Preprocessor] => var::private:hex[,] globJ = new array.hex(8, 2);
[?][Preprocessor][75, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][77, 9] => New processing loop started.
[!][Preprocessor] => func::public:int Main(envi:string[], length:int){ //This is the main
[?][Preprocessor][77, 59] => A single line comment has been detected!
[?][Preprocessor][77, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][78, 56] => New processing loop started.
[!][Preprocessor] => //function in the program!
[?][Preprocessor][78, 56] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][79, 56] => New processing loop started.
[!][Preprocessor] => //All Murmur programs
[?][Preprocessor][79, 56] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][80, 56] => New processing loop started.
[!][Preprocessor] => //should include a main
[?][Preprocessor][80, 56] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][81, 56] => New processing loop started.
[!][Preprocessor] => //function.
[?][Preprocessor][81, 56] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][83, 13] => New processing loop started.
[!][Preprocessor] => //This is a public function! (It can be accessed from anywhere
[?][Preprocessor][83, 13] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][84, 13] => New processing loop started.
[!][Preprocessor] => //outside this class)
[?][Preprocessor][84, 13] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][86, 13] => New processing loop started.
[!][Preprocessor] => Func(); //You can access any function inside this class
[?][Preprocessor][86, 21] => A single line comment has been detected!
[?][Preprocessor][86, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][88, 13] => New processing loop started.
[!][Preprocessor] => var:^int a = 0; //This var will allocate the custom set amount of
[?][Preprocessor][88, 29] => A single line comment has been detected!
[?][Preprocessor][88, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][89, 29] => New processing loop started.
[!][Preprocessor] => //memory specified at the start of this program!
[?][Preprocessor][89, 29] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][91, 13] => New processing loop started.
[!][Preprocessor] => var:int b = 1; //This var will allocate the default amount of
[?][Preprocessor][91, 28] => A single line comment has been detected!
[?][Preprocessor][91, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][92, 28] => New processing loop started.
[!][Preprocessor] => //memory set by the compiler
[?][Preprocessor][92, 28] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][94, 13] => New processing loop started.
[!][Preprocessor] => var:^int c = Test(a, 1); //You can pass all types of vars to other functions
[?][Preprocessor][94, 38] => A single line comment has been detected!
[?][Preprocessor][94, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][96, 13] => New processing loop started.
[!][Preprocessor] => a = 1, c = 5; //Change the value of 'c' to '5'm and the value of 'a' to '1'
[?][Preprocessor][96, 27] => A single line comment has been detected!
[?][Preprocessor][96, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][98, 13] => New processing loop started.
[!][Preprocessor] => a = c = 6; // The same as a = 6, c = 6;
[?][Preprocessor][98, 24] => A single line comment has been detected!
[?][Preprocessor][98, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][99, 13] => New processing loop started.
[!][Preprocessor] => //a & c = self + 5; // EXP: The same as a = a + 5, c = c + 5;
[?][Preprocessor][99, 13] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][100, 13] => New processing loop started.
[!][Preprocessor] => //a | c = self + 5; // EXP: The same as if(a) a = a + 5; if(c) c = c + 5;
[?][Preprocessor][100, 13] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][102, 13] => New processing loop started.
[!][Preprocessor] => PlusOne(b:refer); //the value of 'b' is '2' now!
[?][Preprocessor][102, 31] => A single line comment has been detected!
[?][Preprocessor][102, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][104, 13] => New processing loop started.
[!][Preprocessor] => var:bool myTest = false;
[?][Preprocessor][104, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][106, 13] => New processing loop started.
[!][Preprocessor] => if(myTest == true){ //This condition is impossible
[?][Preprocessor][106, 33] => A single line comment has been detected!
[?][Preprocessor][106, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][108, 17] => New processing loop started.
[!][Preprocessor] => //Anything here will never manage to run
[?][Preprocessor][108, 17] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][110, 13] => New processing loop started.
[!][Preprocessor] => }else if(false){
[?][Preprocessor][110, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][112, 17] => New processing loop started.
[!][Preprocessor] => // Hm...
[?][Preprocessor][112, 17] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][114, 13] => New processing loop started.
[!][Preprocessor] => }else{
[?][Preprocessor][114, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][116, 17] => New processing loop started.
[!][Preprocessor] => //Hmm...
[?][Preprocessor][116, 17] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][118, 13] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][118, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][120, 13] => New processing loop started.
[!][Preprocessor] => if(myTest != true){ //This condition is possible
[?][Preprocessor][120, 33] => A single line comment has been detected!
[?][Preprocessor][120, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][122, 17] => New processing loop started.
[!][Preprocessor] => //...
[?][Preprocessor][122, 17] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][124, 13] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][124, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][126, 13] => New processing loop started.
[!][Preprocessor] => if(1 >= 5 || 1 > 5 || (1 > 1 && 1 < 1)){ //These conditions are impossible
[?][Preprocessor][126, 54] => A single line comment has been detected!
[?][Preprocessor][126, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][128, 17] => New processing loop started.
[!][Preprocessor] => //Anything here will never manage to run
[?][Preprocessor][128, 17] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][130, 13] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][130, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][132, 13] => New processing loop started.
[!][Preprocessor] => if(1 <= 5 || 1 < 5){ //These conditions are possible
[?][Preprocessor][132, 34] => A single line comment has been detected!
[?][Preprocessor][132, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][134, 17] => New processing loop started.
[!][Preprocessor] => //...
[?][Preprocessor][134, 17] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][136, 13] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][136, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][138, 13] => New processing loop started.
[!][Preprocessor] => io.console.print("Hello there!");
[?][Preprocessor][138, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][140, 13] => New processing loop started.
[!][Preprocessor] => return ZERO; //This is the final program output code
[?][Preprocessor][140, 26] => A single line comment has been detected!
[?][Preprocessor][140, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][142, 9] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][142, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][144, 9] => New processing loop started.
[!][Preprocessor] => func::private:void Func(){
[?][Preprocessor][144, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][145, 25] => New processing loop started.
[!][Preprocessor] => //^ This is the return type of the function!
[?][Preprocessor][145, 25] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][147, 13] => New processing loop started.
[!][Preprocessor] => //This is a private function! (It can be accessed only by
[?][Preprocessor][147, 13] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][148, 13] => New processing loop started.
[!][Preprocessor] => //other functions inside this class)
[?][Preprocessor][148, 13] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][150, 13] => New processing loop started.
[!][Preprocessor] => //Your code goes here!
[?][Preprocessor][150, 13] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][152, 9] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][152, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][154, 9] => New processing loop started.
[!][Preprocessor] => func::public:^int Test(a:^int, b:int){
[?][Preprocessor][154, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][156, 13] => New processing loop started.
[!][Preprocessor] => a = (^int) b; //Do not support this!
[?][Preprocessor][156, 27] => A single line comment has been detected!
[?][Preprocessor][156, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][157, 13] => New processing loop started.
[!][Preprocessor] => // First, add a library that can take care of this stuff.
[?][Preprocessor][157, 13] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][159, 13] => New processing loop started.
[!][Preprocessor] => return a;
[?][Preprocessor][159, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][161, 9] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][161, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][163, 9] => New processing loop started.
[!][Preprocessor] => func::public:void PlusOne(a:int:refer){ //with the keyword "ref", you can make changes to the originally passed var within this function
[?][Preprocessor][163, 49] => A single line comment has been detected!
[?][Preprocessor][163, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][164, 37] => New processing loop started.
[!][Preprocessor] => //^ "reference"
[?][Preprocessor][164, 37] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][165, 37] => New processing loop started.
[!][Preprocessor] => //int og = 0;
[?][Preprocessor][165, 37] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][166, 37] => New processing loop started.
[!][Preprocessor] => //PlusOne(og:refer);
[?][Preprocessor][166, 37] => A single line comment has been detected!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][168, 13] => New processing loop started.
[!][Preprocessor] => a++; //the value of 'og' will change to '1'!
[?][Preprocessor][168, 18] => A single line comment has been detected!
[?][Preprocessor][168, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][170, 9] => New processing loop started.
[!][Preprocessor] => }
[?][Preprocessor][170, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][172, 9] => New processing loop started.
[!][Preprocessor] => func::public:void myTests(){
[?][Preprocessor][172, 9] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][174, 13] => New processing loop started.
[!][Preprocessor] => var:bool myTest = false;
[?][Preprocessor][174, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][175, 13] => New processing loop started.
[!][Preprocessor] => var:int a = 0, b = 0;
[?][Preprocessor][175, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][176, 13] => New processing loop started.
[!][Preprocessor] => var:double c = 4, d = 3;
[?][Preprocessor][176, 13] => Checking for preprocessor methods...
[?][Preprocessor] => Inserted the filtered code into the temporary output file.
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor] => Getting the content of the next line...
[?][Preprocessor] => The line variable content changed successfully!
[?][Preprocessor][178, 13] => New processing loop started.
[!][Preprocessor] => myTest!!; //This is the same as myTest = !myTest;
[?][Preprocessor][178, 23] => A single line comment has been detected!
[?][Preprocessor][178, 13] => Checking for preprocessor methods...