Advance Ruby: dynamic typing

With dynamic typing the type of any variable can change:

obj = "Hi, world!"
obj = true

In Ruby there is no implicit type-checking.