# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Norm < UnaryFunction def to_mathml_without_math_tag "#{parameter_one.to_mathml_without_math_tag}" end end end end end