Sha256: fd6f4746ed37ea75cae2fc2256f342797d6ce9e62d95fc23ca72accc31b49af0
Contents?: true
Size: 327 Bytes
Versions: 23
Compression:
Stored size: 327 Bytes
Contents
# frozen_string_literal: true # A symbol is a mark or sign that signifies a particular rudiment of music class HeadMusic::MusicalSymbol attr_reader :ascii, :unicode, :html_entity def initialize(ascii: nil, unicode: nil, html_entity: nil) @ascii = ascii @unicode = unicode @html_entity = html_entity end end
Version data entries
23 entries across 23 versions & 1 rubygems