summary refs log tree commit diff stats
path: root/web
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-05-19 23:17:16 +0200
committerAraq <rumpf_a@web.de>2013-05-19 23:17:16 +0200
commit1c9b4e5d33ff6bca8f345951b72018171d47e251 (patch)
tree9ca5b48233aea847a8818c4efe50d927d42f18da /web
parent7b36d3d6ff390cc512be06a2c065108fc059eb6f (diff)
downloadNim-1c9b4e5d33ff6bca8f345951b72018171d47e251.tar.gz
made some tests green; implemented 'from module import nil'
Diffstat (limited to 'web')
-rw-r--r--web/index.txt6
-rw-r--r--web/question.txt3
2 files changed, 4 insertions, 5 deletions
diff --git a/web/index.txt b/web/index.txt
index ba56230f4..260d303c8 100644
--- a/web/index.txt
+++ b/web/index.txt
@@ -27,11 +27,11 @@ Nimrod looks like this:
   var sum = 0
    
   for line in stdin.lines:
-  count += 1
-  sum += line.len
+    count += 1
+    sum += line.len
    
   echo "Average line length: ",
-  if count > 0: sum / count else: 0
+    if count > 0: sum / count else: 0
 
 
 Nimrod is efficient
diff --git a/web/question.txt b/web/question.txt
index 7e93d2574..cccc784b6 100644
--- a/web/question.txt
+++ b/web/question.txt
@@ -50,8 +50,7 @@ memory heap.
 How is Nimrod licensed?
 -----------------------
 
-The Nimrod compiler is GPL licensed, the runtime library is LGPL licensed
-with a special exception that allows for static linking.
+The Nimrod compiler and the library are MIT licensed.
 This means that you can use any license for your own programs developed with
 Nimrod.
 
; 2021-10-22 19:24:44 -0700 new fork of Lua 5.1' href='/akkartik/teliva/commit/src/lstate.c?id=74f8cd15bb43110973deffdeb9dd229797e5b328'>74f8cd1
74f8cd1


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