Updated Scripting faq (markdown)

takahashim
2013-04-14 06:15:27 -07:00
parent f7ee2f0149
commit 9d935a4e65
+2 -2
@@ -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.