2026-04-01
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
Link("artificial-autonomy.com",
destination: URL(string: "https://www.artificial-autonomy.com")!)
}
.padding()
}
}
#Preview {
ContentView()
}

