module SlideHero class Note attr_reader :text def initialize(text) @text = text end def compile %{} end end end