Files
phranck d3f8ff60f3 Chore: Change license to MIT
- Add LICENSE file (MIT)
- Update 141 Swift file headers: CC BY-NC-SA 4.0 → License: MIT
2026-02-06 00:21:51 +01:00

25 lines
456 B
Swift
Raw Permalink 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
// License: MIT
// 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()