mirror of
https://github.com/reactos/CMake.git
synced 2024-12-16 08:07:29 +00:00
77139e320c
Issue: #16742
9 lines
141 B
Swift
9 lines
141 B
Swift
import Foundation
|
|
|
|
@objc class SwiftMainClass : NSObject {
|
|
class func SwiftMain() -> Int32 {
|
|
dump("Hello World!");
|
|
return 0;
|
|
}
|
|
}
|