summaryrefslogtreecommitdiffstats
path: root/Tests/SwiftMix/SwiftMain.swift
blob: a4a0a62b43a667095233aaac74bdc73784ce7929 (plain)
1
2
3
4
5
6
7
8
import Foundation

@objc class SwiftMainClass : NSObject {
  class func SwiftMain() -> Int32 {
    dump("Hello World!");
    return 0;
  }
}