Sha256: 45192ab5d3a410151d50263410924096caa2195ec6c19ca89abffca6257eb7f1
Contents?: true
Size: 387 Bytes
Versions: 13
Compression:
Stored size: 387 Bytes
Contents
# frozen_string_literal: true require_relative 'atomic_term' module MiniKraken module Core # A specialized atomic term that represents an integer value. # in MiniKraken class KInteger < AtomicTerm # @param aValue [Integer] Ruby representation of integer value def initialize(aValue) super(aValue) end end # class end # module end # module
Version data entries
13 entries across 13 versions & 1 rubygems