def abc
  @abc ||= begin 
    puts 'processing...'
    5555
  end
end 

abc
# processing...
# => 5555

abc
# => 5555