From 9d935a4e65260a069f0f54e1acb6742e32bb6aac Mon Sep 17 00:00:00 2001 From: takahashim Date: Sun, 14 Apr 2013 06:15:27 -0700 Subject: [PATCH] Updated Scripting faq (markdown) --- Scripting-faq.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripting-faq.md b/Scripting-faq.md index 85eccb4..ca7cf9b 100644 --- a/Scripting-faq.md +++ b/Scripting-faq.md @@ -2,14 +2,14 @@ ``` > class String -* def + +* def +(s1) * end * end => nil > "a" + "b" => "ab" ``` -This causes a error in CRuby. +This causes a error in CRuby's irb, and returns ``nil`` in CRuby. This behavior is a limitation by the current implementation. ## I can't alias for global variables.