Commits

Joe Groff committed 3fded63cac5
stdlib: Proof-of-concept 'print' implementation for an arbitrary Array. Mock up a naive Printable protocol, and do some dirty tricks in the runtime to implement a 'printAny' function that uses swift_conformsToProtocol to look up a conformance to Printable if the type has one, or falls back to a dumb opaque printing if it doesn't. Use this to make Array<T> Printable in some way or another for all T. Swift SVN r13902