mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-24 08:15:25 +00:00
made some tests green; implemented 'from module import nil'
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user