summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/stringio/stringio.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/stringio/stringio.md b/doc/stringio/stringio.md
new file mode 100644
index 0000000000..345fc5f207
--- /dev/null
+++ b/doc/stringio/stringio.md
@@ -0,0 +1,26 @@
+\IO streams for strings, with access similar to
+{IO}[rdoc-ref:IO];
+see {IO}[rdoc-ref:IO].
+
+### About the Examples
+
+Examples on this page assume that \StringIO has been required:
+
+```
+require 'stringio'
+```
+
+And that these constants have been defined:
+
+```
+TEXT = <<EOT
+First line
+Second line
+
+Fourth line
+Fifth line
+EOT
+
+RUSSIAN = 'ั‚ะตัั‚'
+DATA = "\u9990\u9991\u9992\u9993\u9994"
+```