
add_type_conversion(type("string"), type("Type_Info"), fun(s

assert_true(from_json("null").is_var_null())
) { return type(n); });

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

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



