Files
cxx-swift-interop/Sources/SwiftFrontend/main.swift

10 lines
156 B
Swift
Raw Normal View History

2024-08-03 23:28:29 -07:00
import Foundation
import SDL3
2024-08-03 22:13:17 -07:00
2024-08-03 23:28:29 -07:00
guard SDL_Init(SDL_INIT_VIDEO) >= 0 else {
print("SDL init failed.")
exit(0)
}
print("SDL init success.")
SDL_Quit()