sam
type class JsonWriter<T> { fun toJson(t:T) :JsonObject }
type object PersonJsonWriter : JsonWriter<Person> { ... }