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