-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
TestSuite.txt
2083 lines (2076 loc) · 51 KB
/
TestSuite.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
======================================================================
==== Testing print. Important since all the other tests rely on it!
==== And we'll test comments while we're at it.
print "Hello world!"
print "You can ""quote"" me on that."
print(42) // Works both with and without parentheses
----------------------------------------------------------------------
Hello world!
You can "quote" me on that.
42
======================================================================
==== Basic math and operator precedence.
print 2 * 3 + 4
print 2 + 3 * .5
print -2 * -3 - 4
print -2 - 3 * -4
print -2^3
----------------------------------------------------------------------
10
3.5
2
10
-8
======================================================================
==== Logical operators (basics).
print 1 and 1 and 1
print 1 and 0 and 1
print 0 and 1 and 1
print 0 and 0.5
print(0.5 and 1) // combines intermediate values by rules of probability!
print 0.6 and 0.5
print 1 or 1 or 1
print 1 or 0 or 1
print 0 or 1 or 1
print 0 or 0.5
print 0.6 or 0.3
print 0.5 or 1
print 1 and null
print 1 or null
----------------------------------------------------------------------
1
0
0
0
0.5
0.3
1
1
1
0.5
0.72
1
0
1
======================================================================
==== Logical operators (beyond the standard 0-1 range).
print -1 and 0
print 0 and -1
print -1 or 0
print 0 or -1
print 5 and 10
print 5 or 10
----------------------------------------------------------------------
0
0
1
1
1
1
======================================================================
==== Parsing of numbers in various formats (including exponential).
print 123
print 1.23
print 1.23e+9
print -1.23E+9
print 1.23E-9
print -1.23e-9
----------------------------------------------------------------------
123
1.23
1230000000
-1230000000
1.230000E-09
-1.230000E-09
======================================================================
==== Logical operators, short-circuit evaluation.
reset = function; globals.r = []; end function
ftrue = function(x); globals.r = r + [x]; return 1; end function
ffalse = function(x); globals.r = r + [x]; return 0; end function
fmaybe = function(x); globals.r = r + [x]; return 0.5; end function
reset; print (ftrue(1) and ftrue(2) and ftrue(3)) + "; " + r
reset; print (ftrue(1) and ftrue(2) and ffalse(3)) + "; " + r
reset; print (ftrue(1) and ffalse(2) and ftrue(3)) + "; " + r
reset; print (ffalse(1) and ftrue(2) and ftrue(3)) + "; " + r
reset; print((fmaybe(1) and ftrue(2) and ftrue(3)) + "; " + r);
reset; print((ffalse(1) or ffalse(2) or ffalse(3)) + "; " + r);
reset; print((ffalse(1) or ffalse(2) or ftrue(3)) + "; " + r);
reset; print((ffalse(1) or ftrue(2) or ffalse(3)) + "; " + r);
reset; print((ftrue(1) or ffalse(2) or ffalse(3)) + "; " + r);
reset; print((fmaybe(1) or ffalse(2) or ffalse(3)) + "; " + r);
----------------------------------------------------------------------
1; [1, 2, 3]
0; [1, 2, 3]
0; [1, 2]
0; [1]
0.5; [1, 2, 3]
0; [1, 2, 3]
1; [1, 2, 3]
1; [1, 2]
1; [1]
0.5; [1, 2, 3]
======================================================================
==== Watch out for bug #6 (failure of assignment with boolean operators).
a = 1234; a = (1 or 0); print a
a = 1234; a = (0 or 1); print a
a = 1234; a = (1 and 0); print a
a = 1234; a = (0 and 1); print a
----------------------------------------------------------------------
1
1
0
0
======================================================================
==== Check the new 'true' and 'false' keywords introduced in v1.1.
print true
print false
----------------------------------------------------------------------
1
0
======================================================================
==== Testing conventional 'if', and what values count as true.
if 1 then
print 10
end if
if -1 then; print(11); end if
if 0 then; print(20); end if
if 0.001 then; print(30); end if
if -0.001 then; print(31); end if
if [1] then; print(40); end if
if [] then; print(50); end if
if null then; print(60); else; print("OK!"); end if
----------------------------------------------------------------------
10
11
30
31
40
OK!
======================================================================
==== Testing the single-line 'if' statement introduced in v1.1.
if true then print "Yep"
if 1 then print "yay" else print"nay"
if false then print "yo" else print "no"
if true then x=1 else x=2
print x
if 1 then print "A" else if 1 then print "B" else print "C"
if 0 then print "A" else if 1 then print "B" else print "C"
if 0 then print "A" else if 0 then print "B" else print "C"
for i in range(1,10)
if i == 3 then continue
if i == 6 then break
print i
end for
f = function(x)
if x < 0 then return else print x
end function
f -3.14
f 42
----------------------------------------------------------------------
Yep
yay
no
1
A
B
C
1
2
4
5
42
======================================================================
===== More complex 'if' structures.
if 1 then
print 10
else if 1 then
print 15
else
print 20
end if
print 30
if 0 then
print 40
else if 1 then
print 45
else
print 50
end if
print 60
if 0 then
print 70
else if 0 then
print 80
else if 1 then
print 90
else
print 100
end if
if 0 then
print 110
else if 0 then
print 120
else if 0 then
print 130
else
print 140
end if
print 150
----------------------------------------------------------------------
10
30
45
60
90
140
150
======================================================================
===== Nested 'if' structures.
if 1 then
if 1 then; print(101); else; print(102); end if
else
if 1 then; print(201); else; print(202); end if
end if
print 300
if 0 then
if 1 then; print(401); else; print(402); end if
else
if 0 then; print(501); else; print(502); end if
end if
print 999
----------------------------------------------------------------------
101
300
502
999
======================================================================
==== Variables.
x = 6*7
print x
y = x == 42
print y
----------------------------------------------------------------------
42
1
======================================================================
==== List operations.
list1 = [0, 10, 20, 30, 40]
list2 = [100, -200, 300]
print list1[1]
print list1[:3]
print list1[3:]
print list1[-2]
print list1[1:-1]
print list1 + list2
print [10,20,30,40,50][2:4]
print list2 * 2.5
print list1 * 0.4
print list1 * -5
list1[2] = 22
print list1
print "Equality 1: " + (list1 == list2)
listA = list2
print "Equality A: " + (listA == list2)
listB = [100, -200] + [300]
print "Equality B: " + (listB == list2)
----------------------------------------------------------------------
10
[0, 10, 20]
[30, 40]
30
[10, 20, 30]
[0, 10, 20, 30, 40, 100, -200, 300]
[30, 40]
[100, -200, 300, 100, -200, 300, 100]
[0, 10]
[]
[0, 10, 22, 30, 40]
Equality 1: 0
Equality A: 1
Equality B: 1
======================================================================
==== String operations.
str1 = "apple"
str2 = "banana"
print str1[0]
print str1[-2]
print str1 + str2
print str1 * 3
print str1 * 0.6
print str2 * 0.5 + str1
print str2[1:-1]
print str1[2:4] + str2[-3:5]
print str1 * 0 == ""
print "banana.txt" - ".txt"
print "banana" - "na" * 2
----------------------------------------------------------------------
a
l
applebanana
appleappleapple
app
banapple
anan
plan
1
banana
ba
======================================================================
==== Check that our strings comparisons are properly case-sensitive.
print "q" >= "A" and "q" <= "Z"
print "Q" >= "A" and "Q" <= "Z"
print "foo" == "FOO"
print "foo" == "foo"
----------------------------------------------------------------------
0
1
0
1
======================================================================
==== Basic map functionality.
sortedStr = function(d)
result = "{"
for k in d.indexes.sort
result = result + k + ": " + d[k] + ", "
end for
return result[:-2] + "}"
end function
a = {1:1, 2:4}
print sortedStr(a)
print a[2]
print sortedStr(a + {3:9})
print sortedStr(a + {1:-1})
a[2] = 44
print a[2]
b = a
c = {1:1} + {2:44}
print "Equality B: " + (b == a)
print "Equality C: " + (c == a)
c[1] = "one"
print "Equality C2: " + (c == a)
d = {"empty":null}
print d
----------------------------------------------------------------------
{1: 1, 2: 4}
4
{1: 1, 2: 4, 3: 9}
{1: -1, 2: 4}
44
Equality B: 1
Equality C: 1
Equality C2: 0
{"empty": null}
======================================================================
==== Test map equality in the trickier case of recursive references.
a = {}
b = {}
c = {}
a.b = b
b.a = a
c = a
print "a == b: " + (a == b)
print "a == c: " + (a == c)
print "b == c: " + (b == c)
----------------------------------------------------------------------
a == b: 0
a == c: 1
b == c: 0
======================================================================
==== Simple intrinsic functions.
==== (Including a range check on rnd, which is about the best we can do.)
print str(4) + str(2)
print slice([0,10,20,30], 1, -1)
print rnd >= 0
print rnd < 1
print str(42.0)
print val("40.2")
t1 = time; wait 0.1; e = time - t1
if e >= 0.1 then print "wait OK" else print "wait broken"
print len("hello")
print len([1,2,3,4])
print len({1:"one", 2:"two"})
print @intrinsics.sin
----------------------------------------------------------------------
42
[10, 20]
1
1
42
40.2
wait OK
5
4
2
FUNCTION(radians=0)
======================================================================
==== Errors when misusing the `new` operator
x = new 42
----------------------------------------------------------------------
Runtime Error: argument to 'new' must be a map [line 1]
====
x = new string
----------------------------------------------------------------------
Runtime Error: invalid use of 'new'; to create a string, use quotes, e.g. "foo" [line 1]
====
x = new list
----------------------------------------------------------------------
Runtime Error: invalid use of 'new'; to create a list, use square brackets, e.g. [1,2] [line 1]
====
x = new number
----------------------------------------------------------------------
Runtime Error: invalid use of 'new'; to create a number, use a numeric literal, e.g. 42 [line 1]
====
x = new funcRef
----------------------------------------------------------------------
Runtime Error: invalid use of 'new'; to create a function, use the 'function' keyword [line 1]
======================================================================
==== hasIndex and indexOf on strings, lists, and maps.
s = "abcde"
print s.hasIndex(4) // 1 (true)
print(s.hasIndex(5)) // 0
print s.hasIndex(-5) // 1 (5 elements from the end)
print(s.hasIndex(-6)) // 0
print(s.indexOf("cd")) // 2
print(s.indexOf("xy")) // null
l = [2,4,6,8]
print l.hasIndex(3) // 1 (true)
print l.hasIndex(4) // 0
print l.hasIndex(-4) // 1
print l.hasIndex("X") // 0 {GitHub #3}
print l.indexOf(6) // 2
print l.indexOf(5) // null
d = {1:"one", 2:"two", "foo":42}
print d.hasIndex(1) // 1 (true)
print(d.hasIndex("x")) // 0
print(d.indexOf("two")) // 2
print(d.indexOf(42)) // foo
print(d.indexOf(999)) // null
// and now with the optional "after" parameter...
s = "hello world"
print(s.indexOf("h",-1)) // 0
print(s.indexOf("o")) // 4
print(s.indexOf("o",4)) // 7
print(s.indexOf("o",7)) // null
print(s.indexOf("l",-3)) // 9
l = [2,4,6,4,2]
print(l.indexOf(2,-1)) // 0
print(l.indexOf(2,0)) // 4
print l.indexOf("X",0) // null {GitHub #3}
print(l.indexOf(2,-2)) // 4
print(l.indexOf(2,4)) // null
d["bar"] = 42
a = d.indexOf(42) // "foo" (or "bar"; order undefined)
b = d.indexOf(42, a) // "bar" (or "foo")
print(d.indexOf(42, b)) // null
l = [a,b]
l.sort
print(l) // ["bar", "foo"]
----------------------------------------------------------------------
1
0
1
0
2
null
1
0
1
0
2
null
1
0
2
foo
null
0
4
7
null
9
0
4
null
4
null
null
["bar", "foo"]
======================================================================
==== index and slice operators on lists and strings
s = "abcde"
l = [2,4,6,8,10]
print s[0] + ";" + l[0]
print s[1] + ";" + l[1]
print s[-1] + ";" + l[-1]
print s[:3] + ";" + l[:3]
print s[-2:] + ";" + l[-2:]
print s[1:-1] + ";" + l[1:-1]
l2 = l[:]
l2[0] = 42
print str(l) + " -> " + l2
s2 = s[:]
print s2
----------------------------------------------------------------------
a;2
b;4
e;10
abc;[2, 4, 6]
de;[8, 10]
bcd;[4, 6, 8]
[2, 4, 6, 8, 10] -> [42, 4, 6, 8, 10]
abcde
======================================================================
==== truth testing (including with and, or, and not)
emptyList = []
fullList = [1,2,3]
emptyMap = {}
fullMap = {1:"one", 2:"two"}
emptyString = ""
fullString = "foo"
if emptyList then print "A"
if not emptyList then print "B"
if fullList then print "C"
if not fullList then print "D"
if fullString then print "E"
if not fullString then print "F"
if emptyList and fullList then print "G"
if emptyList or fullList then print "H"
if emptyMap and fullMap then print "I"
if emptyMap or fullMap then print "J"
if emptyString and fullString then print "K"
if emptyString or fullString then print "L"
print "not []: " + (not [])
print "not {}: " + (not {})
print "not 0: " + (not 0)
print "not """": " + (not "")
print "not [42]: " + (not [42])
print "not {3:9}: " + (not {3:9})
print "not 42: " + (not 42)
print "not ""a"": " + (not "a")
if @rnd then print "ok" else print "wrong"
----------------------------------------------------------------------
B
C
E
H
J
L
not []: 1
not {}: 1
not 0: 1
not "": 1
not [42]: 0
not {3:9}: 0
not 42: 0
not "a": 0
ok
======================================================================
==== hashing and dictionary key uniqueness
==== (Note that hash(a) should == hash(b) wherever a == b)
a = [1, 2, 3]
b = [1, 2] + [3]
print hash(a) == hash(b)
d = {}
d[a] = 1
d[b] = 2
print d.len + ": " + d[a] + ", " + d[b]
d1 = {1:"one", 2:"two"}
d2 = {1:"one"}
d2[2] = "two"
print hash(d1) == hash(d2)
----------------------------------------------------------------------
1
1: 2, 2
1
======================================================================
==== Equality checking in the edge case of a list or dictionary
==== that contains itself. This actually works now; our equality
==== checker is smart about recursive data.
a = [1, 2, 3]
a[1] = a
b = [1, 2, 3]
b[1] = b
print hash(a) == hash(b)
print(a == a) // prints 1, as they're the same object
print(a == b) // prints 1, because they are equivalent
b[2] = 42 // but they're now truly different
print(a == b) // so this prints 0
d1 = {1:"foo"}
d1["recurse"] = d1
d2 = {1:"foo"}
d2["recurse"] = d2
print(d1 == d1) // prints 1, as they're the same object
print(d1 == d2) // prints 1, because they are equivalent
d2[1] = "bar" // but they're now truly different
print(d1 == d2) // so this prints 0
----------------------------------------------------------------------
1
1
1
0
1
1
0
======================================================================
==== Mixed-type equality testing. Should return null for any ordering
==== comparisons, but 0/1 for equal/not-equal tests.
print 1 == "1" // (even if they evaluate to the same thing!)
print "foo" == 0
print 42 != [42]
print {"abc":"def"} != "abcdef"
print 1 < "42"
print "abc" > [42]
print [42] <= {1:2}
print {"ichi":1} >= 0
----------------------------------------------------------------------
0
0
1
1
null
null
null
null
======================================================================
==== Trigonometry.
print "Pi: " + round(pi, 2)
print "acos(0.5): " + round(acos(0.5), 3)
print "asin(0.5): " + round(asin(0.5), 3)
print "atan(0.5): " + round(atan(0.5), 3)
print "cos(-pi/4): " + round(cos(-pi/4), 3)
print "sin(-pi/4): " + round(sin(-pi/4), 3)
print "tan(1): " + round(tan(1), 3)
----------------------------------------------------------------------
Pi: 3.14
acos(0.5): 1.047
asin(0.5): 0.524
atan(0.5): 0.464
cos(-pi/4): 0.707
sin(-pi/4): -0.707
tan(1): 1.557
======================================================================
==== User-defined functions (including params, with and without default values).
ultimateAnswer = function
return 2 + 4*10
end function
print ultimateAnswer
answerWithParens = function()
return 2 + 4*10
end function
print answerWithParens
f = function(x, y)
return x*2 + y
end function
print f(5,2)
g = function(x=10, y=20)
return x*2 + y
end function
h = function(x)
if x == 42 then; return; end if
print "Hooray!"
end function
print g
print g()
print g(5)
print g(5, 6)
h(42)
----------------------------------------------------------------------
42
42
12
40
40
30
16
======================================================================
==== Variable scoping tests.
f = function(x)
print x
print y
x = 10
y = 20
end function
x = 1
y = 2
f(5)
print x
print y
----------------------------------------------------------------------
5
2
1
2
======================================================================
==== Explicit access to globals and locals.
count = 0
foo = "bar"
f = function(x)
globals.count = globals.count + 1
locals.foo = "baz"
print globals.count + ", " + foo
end function
f
f
print foo
----------------------------------------------------------------------
1, baz
2, baz
bar
======================================================================
==== Test precedence between [] and . (a bug in MiniScript version 1).
d = {}
d.items = {}
d.items[42] = "foo!"
print d.items[42]
----------------------------------------------------------------------
foo!
======================================================================
==== Test use of null as a dictionary key or value.
d = {}
d[null] = 42
print d
print d[null]
maybeNull = d.indexes[0]
print maybeNull == null
d.remove null
d[42] = null
print d
print d[42]
print d[42] == null
d = {null:42}
for kv in d
print kv.key == null
end for
----------------------------------------------------------------------
{null: 42}
42
1
{42: null}
null
1
1
======================================================================
==== Function invocation via dot vs. lookup by name
d = {}
d.func = function(x=0)
print "Running func with " + x
end function
d.func(1)
f = d["func"]
f(2)
g = @d.func
g(3)
----------------------------------------------------------------------
Running func with 1
Running func with 2
Running func with 3
======================================================================
==== Testing spam generation. (Not that we condone spam.)
==== (aka string replication)
spam = function(n)
if n == 1 then
return "Spam."
else
return "Spam, " + "spam, " * (n-2) + "spam."
end if
end function
print spam(1)
print spam(2)
print spam(3)
print spam(7)
print spam(0)
print spam(-4)
----------------------------------------------------------------------
Spam.
Spam, spam.
Spam, spam, spam.
Spam, spam, spam, spam, spam, spam, spam.
Spam, spam.
Spam, spam.
======================================================================
==== Simple recursion test.
recursiveFactorial = function(n)
if n == 1 then; return 1; end if
return n * recursiveFactorial(n-1)
end function
print recursiveFactorial(1)
print recursiveFactorial(5)
----------------------------------------------------------------------
1
120
======================================================================
==== Function invocation & referencing.
triple = function(n)
return n*3
end function
print(triple) // NULL, since we didn't supply an argument
print triple(5)
print @triple
f = @triple
print f(6)
----------------------------------------------------------------------
null
15
FUNCTION(n)
18
======================================================================
==== While loop, with break and continue.
i = 0
while i < 20
i = i + 1
if i > 10 then break
if i % 3 == 0 then continue
print i
end while
// Also test break before else (GitHub issue #2)
while i > 0
if i < 7 then
break
else
print i
end if
i = i - 1
end while
----------------------------------------------------------------------
1
2
4
5
7
8
10
11
10
9
8
7
======================================================================
==== Try (and hopefully fail) to lock up the VM with a reference
==== cycle and an invalid identifier.
a = {}
b = {"__isa": a}
a.__isa = b
x = a.foo
----------------------------------------------------------------------
Runtime Error: __isa depth exceeded (perhaps a reference loop?) [line 4]
======================================================================
==== Test some expected runtime errors.
a = ["zero"]
a[42]
----------------------------------------------------------------------
Runtime Error: Index Error (list index 42 out of range) [line 2]
======================================================================
==== Test the range() intrinsic.
print range(1,10)
print range(10,1)
print range(0, 10, 3)
print range(10, 0, -3)
----------------------------------------------------------------------
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
[10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
[0, 3, 6, 9]
[10, 7, 4, 1]
======================================================================
==== Test the remove() intrinsic.
s = "Hello Bob!"
print s.remove("ell")
print remove(s, " Bob")
l = [1,2,3,4,5]
l.remove(-2) // (second from the end)
print l
d = {1:"one", "foo":"bar"}
print d.remove("no such key")
print d.remove(1)
print d
----------------------------------------------------------------------
Ho Bob!
Hello!
[1, 2, 3, 5]
0
1
{"foo": "bar"}
======================================================================
==== Test the insert() intrinsic.
s = "Hello Bob!"
print s.insert(5, " there,")
print s.insert(-2, "?")
l = [1,2,3,4,5]
l.insert(1, "A")
l.insert(-2, "B") // (second from the end)
print l // should be: [1, "A", 2, 3, 4, "B", 5]
l = [1,2,3,4,5]
l.insert(0, "C")
l.insert(-1, "D") // equivalent to l.push "B"
print l // should be: ["C", 1, 2, 3, 4, 5, "D"]
// (Note that insert is not defined for maps, because they are unordered.)
----------------------------------------------------------------------
Hello there, Bob!
Hello Bob?!
[1, "A", 2, 3, 4, "B", 5]
["C", 1, 2, 3, 4, 5, "D"]
======================================================================
==== Test the replace() intrinsic.
s = "Hello Bob!"
print s.replace("o", "oo")
print replace(s, "Bob", "Frank")
s = "Mello Yellow"
print replace(s, "ell", "ipp")
print s.replace("ell", "ipp", 1)
print replace("", "x", "y")
l = [1, 2, 5, 2, "foo", 2, "bar"]
l.replace(2, 22)
print l
print l.replace("foo", "foible")
print l.replace(22, 3, 2)
d = {1:"one", 2:"two", "foo":"bar"}
d.replace("two", "ni")
print d[1] + ", " + d[2] + ", " + d.foo
d.replace("bar", "ni")
print d[1] + ", " + d[2] + ", " + d.foo
d.replace("ni", "two")
print d[1] + ", " + d[2] + ", " + d.foo
d.replace("two", "deux", 1) // order not defined here, so:
s = d[1] + ", " + d[2] + ", " + d.foo
if s == "one, deux, two" or s == "one, two, deux" then
print "OK"
else
print "map replace failed"
end if
----------------------------------------------------------------------
Helloo Boob!
Hello Frank!
Mippo Yippow
Mippo Yellow
[1, 22, 5, 22, "foo", 22, "bar"]
[1, 22, 5, 22, "foible", 22, "bar"]
[1, 3, 5, 3, "foible", 22, "bar"]
one, ni, bar
one, ni, ni
one, two, two
OK
======================================================================
==== For loop, with break and continue.
for i in range(0, 100, 7)
if i > 50 then; break; end if
if i % 3 == 0 then; continue; end if
print i
end for
----------------------------------------------------------------------
7
14
28
35
49
======================================================================
==== For loop iteration over a map (getting key/value pairs).
==== (Note that order is not really defined, so we have to gather
==== up the results and sort them to get a well-defined result.)
d = {"one":1, "two":2, "three":3}
results = []
for i in d
results = results + [i.key + " maps to " + i.value]
end for
results.sort
print results.len
print results[0]
print results[1]
print results[2]
----------------------------------------------------------------------
3
one maps to 1
three maps to 3
two maps to 2
======================================================================
==== Function references.
f = rnd // here, f is just a single random number
a1 = f
a2 = f
print a1==a2 // should be true (1)
f = @rnd // but now, f is a reference to the rnd function
a1 = f
a2 = f
print a1==a2 // should be false (0)
print @f==@rnd // should be true (1)
----------------------------------------------------------------------
1
0
1
======================================================================
==== Advanced function references.