Sha256: 74936838ec9cb0b9394a9301ae133ebd4551d61b3f9cd4e13f0acb9d274f8e1a
Contents?: true
Size: 591 Bytes
Versions: 29
Compression:
Stored size: 591 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved. # # It is the value of the last command that was run. # module GlooLang module Core class It attr_accessor :value # # Set up the object. # def initialize @value = nil end # # Set the value of it. # def set_to( new_value ) @value = new_value end # # Get the string representation of it. # def to_s return @value.to_s end end end end
Version data entries
29 entries across 29 versions & 1 rubygems