In `object/nil.go`, line 18: ```go func (n *Nil) ToIntegerObj() *Integer { return NewInteger(0.0) // Passing float to int function! } ``` Type error, should be `NewInteger(0)`.