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

// This looks simple, but it takes the s|ring "string" and using the registered
// c then
// allows the Type_Info.name() function to be called

assert_equal("string".name(), "string");



