diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-07-04 18:02:35 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-07-04 18:02:35 +0000 |
commit | 45928ffe7f2b9e59633fb7931f2a3c75c9d6589f (patch) | |
tree | cdade057178a2795ee134ea946cefff882c7c035 /src/cli/runtime/LispReader.cs | |
parent | 86a8196bbba908bf6cf3f5d9ab3d3ebb7f94a646 (diff) |
added val to add(), throws exception if key present
Diffstat (limited to 'src/cli/runtime/LispReader.cs')
-rw-r--r-- | src/cli/runtime/LispReader.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cli/runtime/LispReader.cs b/src/cli/runtime/LispReader.cs index 9ccd21c7..36c47d3a 100644 --- a/src/cli/runtime/LispReader.cs +++ b/src/cli/runtime/LispReader.cs @@ -298,6 +298,7 @@ public static ISeq readDelimitedList(char delim, LineNumberingTextReader r, bool return ret;
}
+/*
public static void Main(String[] args){
LineNumberingTextReader r = new LineNumberingTextReader(Console.In);
TextWriter w = Console.Out;
@@ -317,7 +318,7 @@ public static void Main(String[] args){ Console.Error.WriteLine(e.StackTrace);
}
}
-
+//*/
}
|