Sha256: c1069c914aaaf73b21164eb0d06495bc11ee34c1ecf4eefdfe995c1478970e05
Contents?: true
Size: 515 Bytes
Versions: 15
Compression:
Stored size: 515 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 operator asterisk | slash | percent | multiplication_sign | division_sign end end end end
Version data entries
15 entries across 15 versions & 1 rubygems