Let\'s say I\'m using irb, and type a = 5. How do I remove the definition of a so that typing a returns a NameError
irb
a = 5
a
NameError
Currently you have no mean to remove global variables, local variables and class variables. You can remove constants using "remove_const" method though