Ruby/Development/Marshal
Материал из Wiki.crossplatform.ru
Версия от 17:55, 13 сентября 2010; ViGOur (Обсуждение | вклад)
Marshal a set
require "set" puts Marshal.load(Marshal.dump(Set.new([1, 2, 3])))
Marshal a string
puts Marshal.load(Marshal.dump(%w{this is a test}))