Complex.st
changeset 7221 b38093d749b3
parent 6500 d2ce5b0a1a78
child 7355 96f466eeddf5
--- a/Complex.st	Tue Apr 22 11:39:34 2003 +0200
+++ b/Complex.st	Tue Apr 22 11:44:13 2003 +0200
@@ -76,6 +76,14 @@
     (5 % 7) = 5
     (5 % 0) = 5     
     (5.0 % 0) = 5       
+
+    (1 % 0) + (2 % 0)   
+    (1 % 0) + (0 % 2)   
+    (1 % 0) + (2 % 3)
+
+    (1 % 0) * (2 % 0)   
+    (1 % 0) * (0 % 2)   
+    (1 % 0) * (2 % 3)
 "
 ! !
 
@@ -442,5 +450,5 @@
 !Complex class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Complex.st,v 1.6 2002-04-11 14:03:42 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Complex.st,v 1.7 2003-04-22 09:44:13 cg Exp $'
 ! !