Files
BinaryConverter/BinaryConverter/BinaryConverterApp.swift
2023-11-04 14:03:54 +01:00

18 lines
250 B
Swift

//
// BinaryConverterApp.swift
// BinaryConverter
//
// Created by Louis Gallet on 04/11/2023.
//
import SwiftUI
@main
struct BinaryConverterApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}