Sha256: 3e2a427eee2ecc682629688f1bbf333f36ed5daf4adb1d775f68659c57879171
Contents?: true
Size: 569 Bytes
Versions: 43
Compression:
Stored size: 569 Bytes
Contents
# frozen_string_literal: true class Code class Parser class Multiplication < LeftOperation def statement Negation end def asterisk str("*") end def multiplication_sign str("×") end def slash str("/") end def percent str("%") end def division_sign str("÷") end def right_statement Negation end def operator asterisk | slash | percent | multiplication_sign | division_sign end end end end
Version data entries
43 entries across 43 versions & 1 rubygems