-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.lox
190 lines (146 loc) · 2.42 KB
/
test.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
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
print 1 + 2;
print nil;
print "yay";
var beverage = "cafe au lait";
var hi = 3.0;
print beverage + hi;
beverage = hi + 6;
print beverage;
print !false + nil;
{
var a = "Hello!";
{
print beverage + a;
}
}
if (5 > 3) {
print "yay for control flow!";
} else {
print "oh no!";
}
if (false) {
print "hmm...";
} else {
print "all according to plan.";
}
var i = 0;
while (i < 10) {
print i;
i = i + 1;
}
for (var j = 0; j < 5; j = j + 1) {
print "Woo, Rust!";
}
if (2 == 3) { print "bad"; }
fun areWeHavingItYet() {
print "Yes we are!";
}
print areWeHavingItYet;
fun a() {
print "great!";
}
print "good!";
a();
print "perfect!";
fun ret() {
return "here.";
}
print ret();
fun fib(n) {
if (n < 2) return n;
return fib(n - 2) + fib(n - 1);
}
var start = clock();
print fib(2);
print clock() - start;
var content = readfile("test");
print content;
content = content + " appendage";
writefile("test", content);
fun outer() {
var x = "outside";
fun inner() {
print x;
}
var a = inner();
return inner;
}
var o = outer();
o();
class Yes {}
print Yes;
print Yes();
class Pair {}
var pair = Pair();
pair.first = 1;
pair.second = 2;
print pair.first + pair.second;
print pair.ohno;
class Scone {
topping(first, second) {
print "scone with " + first + " and " + second;
}
}
var scone = Scone();
scone.topping("berries", "cream");
class Nested {
method() {
fun function() {
print this;
}
function();
print this;
}
}
Nested().method(); // todo broken?
class CoffeeMaker {
init(coffee) {
this.coffee = coffee;
}
brew() {
print "Enjoy your cup of " + this.coffee;
// No reusing the grounds!
this.coffee = nil;
}
}
var maker = CoffeeMaker("coffee and chicory");
maker.brew();
class Oops {
init() {
fun f() {
print "not a method";
}
this.field = f;
}
}
var oops = Oops();
oops.field();
class Doughnut {
cook() {
print "Dunk in the fryer.";
}
}
class Cruller < Doughnut {
cook() {
super.cook();
print "Dunk more.";
}
finish() {
super.cook();
print "Glaze with icing";
}
}
var cruller = Cruller();
cruller.cook();
cruller.finish();
print "say something...";
var in = input();
print in + "? yes, i agree.";
print "something else?";
in = input();
print "say it more! " + (in * 5);
printf("look ma, ");
print "no newlines!";
print "";
print "";
print "Thank you for everything.";