Search Results for: Prints
aesthetic appeal and is also being used to make attractive products like decorative wrappers, invitation cards, greeting cards, envelopes, shopping bags, boxes,tags etc. this specialty paper is being used the world over for its quality and eye catching appeal. tye and dye, batik, motifs, geometrical prints
, abstract designs, floral prints are imprinted onto hand paper for special effects and for use during important personal and corporate occasions. explore more find us on map pages about us blog contact us handmade paper products handmade papers home products office address a- , shanti colony, opposite...
http://indiahandmadepapers.com/products/
a.flatten.uniq # => [ , 'hi', , , , ] constructing and using an associative array (in ruby, called a hash): hash = hash.new # equivalent to hash = {} hash = { :water => 'wet', :fire => 'hot' } # makes the previous line redundant as we are now # assigning hash to a new, separate hash object puts hash[:fire] # prints
"hot" hash.each_pair do |key, value| # or: hash.each do |key, value| puts "#{key} is #{value}" end # returns {:water=>"wet", :fire=>"hot"} and prints: # water is wet # fire is hot hash.delete :water # deletes the pair :water => 'wet' and returns "wet" hash.delete_if {|key,value| value == 'hot'} # deletes...
https://en.wikipedia.org/wiki/Ruby_(programming_language)