mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 08:16:13 +03:00
14 lines
230 B
Swift
14 lines
230 B
Swift
import SwiftUI
|
|
import GhosttyKit
|
|
|
|
@main
|
|
struct GhosttyApp: App {
|
|
@State private var num = ghostty_hello()
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
Text(String(num)).font(.largeTitle)
|
|
}
|
|
}
|
|
}
|