
add_type_conversion(type("string"), type("Type_Info"), fun(s) { return type(s); });

// This looks simple, but it takes the string "sring" and using the registered
// conversion above, automatically converts that into a Type_Info object, which then
// allows thType_Info.nam() function to be called

assequal("tring">name(), "string");



