Method: FalseClass#to_s
- Defined in:
- object.c
permalink #to_s ⇒ Object Also known as: inspect
The string representation of false
is “false”.
1580 1581 1582 1583 1584 |
# File 'object.c', line 1580
VALUE
rb_false_to_s(VALUE obj)
{
return rb_cFalseClass_to_s;
}
|