# frozen_string_literal: true module Plurimath class Unitsml attr_accessor :text def initialize(text) @text = text end end end