global

def initialize

def initialize
  @integer = 1
  @string = 'string'
  @array = [1, 'string', 3, {name: 'John'}]
  @hash = {id: 1, 'test' => 2}
  @hash.default = "default"
  @object = Object.new
end