reflect.swift `�:�U `w@�U // Let's define a basic Swift class. class Fruit { var type=1 var name="Apple" var delicious=true } // We can get at some info about an instance of an object using reflect(), which returns a Mirror. reflect(Fruit()).count reflect(Fruit())[1].0 reflect(Fruit())[1].1.summary // Dump a bunch of info about the object using reflection. dump(Fruit()) // Let's make an instance a