Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR RUBY

ruby create object with attributes

class MyObject
  attr_accessor :attribute1, :attribute2, :attribute3
end

test_object = MyObject.new
test_object.attribute1 = "Holy cow!"
 
PREVIOUS NEXT
Tagged: #ruby #create #object #attributes
ADD COMMENT
Topic
Name
6+4 =