about summary refs log tree commit diff
path: root/app/lib/command_tag/commands/hello_world.rb
blob: 4cf17685e3122efc8be8597c498712af082f3a20 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

module CommandTag::Commands::HelloWorld
  def handle_hello_world_at_start
    @text << "\nHello, world!"
  end
end