NewInspectorView.st
changeset 39 03af455029eb
parent 32 9dfc1899e849
child 88 d6dccf1ad344
--- a/NewInspectorView.st	Wed Jan 15 14:32:46 1997 +0100
+++ b/NewInspectorView.st	Wed Jan 15 14:33:11 1997 +0100
@@ -12,7 +12,14 @@
 examples
 
 "
-NewInspector::InspectorView inspect:(Array new:5)
+    open an inspector on an array
+                                                                        [exBegin]
+    |array|
+
+    array := Array new:5.
+    array at:1 put:(Array new:400).
+    NewInspector::InspectorView inspect:array
+                                                                        [exEnd]
 "
 ! !