499: Highlights
- If you want to control display spacing,
then you must implement methods that format strings, integers, and
floating-point numbers according to your desires.
- If you want to determine the length of a string, then send the
size message.
- If you want to create a new string of a specified length, then use
the
new: method.
- If you want to fill a string with a
specified character, then send the
atAllPut: method.
- If you want to convert a
Float instance into an Integer
instance representing the truncated float, then send truncated.