# frozen_string_literal: true # Example module module ArithmeticModule def add(addend1, addend2) addend1 + addend2 end end