-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtras.lox
92 lines (70 loc) · 1.52 KB
/
Extras.lox
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
// for (var b = 0; b < 10; b = b + 1) {
// print "Hello";
// }
// var b=0;
// while (b<3) {
// print b;
// b = b + 1;
// }
// fun makeCounter() {
// var i = 0;
// fun count() {
// // Is this not getting the enclosing variable?
// i = i + 1;
// print i;
// }
// return count;
// }
// var counter = makeCounter();
// counter(); // "1".
// counter(); // "2".
// {
// var i = 0;
// i = i + 1;
// print i;
// }
// Braces are mixing up scoping for 'i=i+1'
// fun fib(n) {
// if (n <= 1) return n;
// return fib(n - 2) + fib(n - 1);
// }
// for (var i = 0; i < 20; i = i + 1) {
// print fib(i);
// }
// class Bagel {}
// var bagel = Bagel();
// print bagel; // Prints "Bagel instance".
// class Bacon {
// eat() {
// print "Crunch crunch crunch!";
// }
// }
// Bacon().eat(); // Prints "Crunch crunch crunch!".
// class Cake {
// taste() {
// var adjective = "delicious";
// print "The " + this.flavor + " cake is " + adjective + "!";
// }
// }
// var cake = Cake();
// cake.flavor = "German chocolate";
// cake.taste(); // Prints "The German chocolate cake is delicious!".
// class Doughnut {
// cook() {
// print "Fry until golden brown.";
// }
// }
// class BostonCream < Doughnut {}
// BostonCream().cook();
// class Doughnut {
// cook() {
// print "Fry until golden brown.";
// }
// }
// class BostonCream < Doughnut {
// cook() {
// super.cook();
// print "Pipe full of custard and coat with chocolate.";
// }
// }
// BostonCream().cook();