made some tests green; implemented 'from module import nil'

This commit is contained in:
Araq
2013-05-19 23:17:16 +02:00
parent 7b36d3d6ff
commit 1c9b4e5d33
16 changed files with 84 additions and 975 deletions

View File

@@ -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

View File

@@ -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.