Commit debea272 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

remove obsolete comment

parent 97e94247
...@@ -997,31 +997,6 @@ mrb_false(mrb_state *mrb, mrb_value self) ...@@ -997,31 +997,6 @@ mrb_false(mrb_state *mrb, mrb_value self)
return mrb_false_value(); return mrb_false_value();
} }
/* 15.3.1.2.10 */
/* 15.3.1.3.35 */
/*
* call-seq:
* print(obj, ...) -> nil
*
* Prints each object in turn to <code>$stdout</code>. If the output
* field separator (<code>$,</code>) is not +nil+, its
* contents will appear between each field. If the output record
* separator (<code>$\\</code>) is not +nil+, it will be
* appended to the output. If no arguments are given, prints
* <code>$_</code>. Objects that aren't strings will be converted by
* calling their <code>to_s</code> method.
*
* print "cat", [1,2,3], 99, "\n"
* $, = ", "
* $\ = "\n"
* print "cat", [1,2,3], 99
*
* <em>produces:</em>
*
* cat12399
* cat, 1, 2, 3, 99
*/
/* 15.3.1.3.36 */ /* 15.3.1.3.36 */
/* /*
* call-seq: * call-seq:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment