This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Playground - noun: a place where people can play | |
| import Foundation | |
| protocol XMLChild { | |
| var XMLNode: NSXMLNode { get } | |
| } | |
| extension String: XMLChild { | |
| var XMLNode: NSXMLNode { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Playground - noun: a place where people can play | |
| import Foundation | |
| protocol XMLChild { | |
| var XMLNode: NSXMLNode { get } | |
| } | |
| extension String: XMLChild { | |
| var XMLNode: NSXMLNode { |