ghostty/macos/Sources/GhosttyApp.swift
Mitchell Hashimoto 8fedbf84d4 macos: use xcodeproj
2023-02-19 10:44:53 -08:00

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)
}
}
}