https://play.crystal-lang.org/#/r/6inx
require "json"
struct MonsterStruct
JSON.mapping(
monster_id: Int32,
name: String
)
end
Monsters = Hash(String, MonsterStruct).from_json(%({"1":{"monster_id":1,"name":"Merman"}}))
puts Monsters[1].name
I like accessing my Hashes with the native type (Monsters[1]), instead of doing Monsters[monster_id.to_s]
. Is this possible? If not, no big deal but just curious!
This data is exported from adminer.php (from a mysql table)