# frozen_string_literal: true module CommandTag::Commands::HelloWorld def initialize_helloworld! @vars['hello_world'] = ['Hello, world!'] end def handle_hello_world_at_start(_) @text << "\nHello, world!" end end