Initial Commit

This commit is contained in:
2026-02-22 19:55:01 +05:00
commit 2a3e57c2fd
8 changed files with 447 additions and 0 deletions

17
Rosetta/RosettaApp.swift Normal file
View File

@@ -0,0 +1,17 @@
//
// RosettaApp.swift
// Rosetta
//
// Created by Gaidar Timirbaev on 22.02.2026.
//
import SwiftUI
@main
struct RosettaApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}