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.