REPL Exercises
Install
pryvia the instructions in the readingUse pry to figure out what 732 * 114 is
- Create a variable, x, and then assign it to the last return value by using the underscore,
_ - Then, divide x by 4
- Create a variable, x, and then assign it to the last return value by using the underscore,

- Capitalize a string by using ruby's
#capitalizemethod

- Type
Integer.instance_methods, notice that this returns a really long list of method names. We could use the down arrow key to scroll down to the bottom, but that would take forever...- Press
Qto truncate the list and get a new pry prompt - Then, use
clear(orcmd + K) to clear the output
- Press
