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

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

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