# frozen_string_literal: true require_relative "test_gem/version" module TestGem class Error < StandardError; end # Your code goes here... class Demo def start p 'hello world' end end end