mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
168 B
Swift
12 lines
168 B
Swift
import UIKit
|
|
|
|
public func publicFoo(x: AnyObject.Type) -> String {
|
|
return NSStringFromClass(x)
|
|
}
|
|
|
|
public func publicBar() {
|
|
UIApplicationMain(0, nil, nil, nil)
|
|
}
|
|
|
|
|