19 lines
247 B
Swift
19 lines
247 B
Swift
//
|
|
// BinaryConverter.swift
|
|
// BinaryConverter
|
|
//
|
|
// Created by Louis Gallet on 04/11/2023.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct BinaryConverter: View {
|
|
var body: some View {
|
|
Text("Hello, Binary!")
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
BinaryConverter()
|
|
}
|