about summary refs log tree commit diff
path: root/app/lib/command_tag/commands/hello_world.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/command_tag/commands/hello_world.rb')
-rw-r--r--app/lib/command_tag/commands/hello_world.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/lib/command_tag/commands/hello_world.rb b/app/lib/command_tag/commands/hello_world.rb
new file mode 100644
index 000000000..cc770ef80
--- /dev/null
+++ b/app/lib/command_tag/commands/hello_world.rb
@@ -0,0 +1,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