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

module CommandTag::Commands::HelloWorld
  def handle_helloworld_startup
    @vars['hello_world'] = ['Hello, world!']
  end

  def handle_hello_world_with_return(_)
    'Hello, world!'
  end
end