# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Bar < UnaryFunction def to_latex first_value = "{#{parameter_one.to_latex}}" if parameter_one "\\bar#{first_value}" end end end end end