mirror of
https://github.com/reactos/CMake.git
synced 2024-12-03 00:57:25 +00:00
9 lines
147 B
Swift
9 lines
147 B
Swift
import Foundation
|
|
|
|
@objc class SwiftMainClass : NSObject {
|
|
@objc class func SwiftMain() -> Int32 {
|
|
dump("Hello World!");
|
|
return 0;
|
|
}
|
|
}
|