# frozen_string_literal: true require_relative "hello_world_hn/version" module HelloWorldHn def self.hello() return "Hello world" end def self.sum(x, y) x + y end def self.sub(x, y) x - y end def self.mul(x, y) x * y end def self.div(x, y) x / y end end