summaryrefslogtreecommitdiff
path: root/sample
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-04-17 06:24:48 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-04-17 06:24:48 +0000
commitcf520dda16af27d2ce41b5b082bf4e5035815cb0 (patch)
treeb1e49888c083cf2f93a6c7a72f5ad36448b52b98 /sample
parent57c75615b9934230e317fd6b84296d514e919a1f (diff)
2000-04-17
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@669 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample')
-rw-r--r--sample/test.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/sample/test.rb b/sample/test.rb
index a849a42fc2..5d4ff052de 100644
--- a/sample/test.rb
+++ b/sample/test.rb
@@ -671,7 +671,11 @@ $x.each_byte {|i|
}
ok(!$bad)
-check "asignment"
+s = "a string"
+s[0..s.size]="another string"
+ok(s == "another string")
+
+check "assignment"
a = nil
ok(defined?(a))
ok(a == nil)