Files
TUIkit/Sources/TUIkitExample/main.swift
T
phranck f77cd8bdec Chore: Unified file headers across all Swift files
Update IDETemplateMacros.plist and replace headers in 136 Swift files with
new format: 🖥️ TUIKit — Terminal UI Kit for Swift. Remove sdsd.swift template draft.
2026-02-03 20:48:29 +01:00

25 lines
459 B
Swift
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 🖥 TUIKit Terminal UI Kit for Swift
// main.swift
//
// Created by LAYERED.work
// CC BY-NC-SA 4.0
// This app demonstrates TUIkit capabilities through various demo pages.
// Use the menu to navigate between demos.
//
import TUIkit
// MARK: - Main App
/// The main example application.
struct ExampleApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
// Run the app
ExampleApp.main()