--- #YAML:1.0
Why?:
  - Similar to other existing serialization tools:
      - Data::Dumper
      - FreezeThaw
      - Storable
      - Python's pickle
      - Java's serializable
  - Except, you can exchange frozen data between systems on different languages
  - You don't want to roll your own again:
      - internationalization
      - quoting and escaping
      - tainting
      - circular references
      - object blessing
      - other stuff you've forgotten
    

Back Next