Created Scripting faq (markdown)

monaka
2013-03-24 00:16:33 -07:00
parent bb080e3a4b
commit 56876b3a3b
+13
@@ -0,0 +1,13 @@
## I can't override String#+
```
> class String
* def +
* end
* end
=> nil
> "a" + "b"
=> "ab"
```
This causes a error in CRuby.
This behavior is a limitation by the current implementation.