Avatar
@swift-6.0.3 @swift-5.10.1 import Foundation #if canImport(FoundationXML) import FoundationXML #endif let d = try XMLDocument(xmlString: """ <doc> <zoo:cat /> </doc> """) let e = d.rootElement()!.child(at: 0)! print(e.name ?? "") print(e.prefix ?? "") print(e.localName ?? "")