Exploring `irb`
Start clean
I created an alias irb=irb --sample-book-mode
This removes the complex prompt like irb(main):001:0> and gives plain and simple >> instead.
Get Help!
When programming in Python, even today I use dir in Python REPL.
So I was looking for the equivalent in Ruby land.
Turns out I was comparing apples and oranges (so to speak)
As of early 2022, irb has awesome help built-in.
It has good autocompletion. So just typing . may be enough to know list of methods available.