diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/index.txt | 6 | ||||
-rw-r--r-- | web/question.txt | 3 |
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. |