module Crystal class Format < String def method_missing m m = m.to_s super unless m[-1..-1] == '?' self == m[0..-2] end end end