# frozen_string_literal: true require_relative "plugin/version" module Hai module Plugin class Error < StandardError; end # Your code goes here... def self.hello p 'hello world' end end end