Schulung_iOS/App.swift
2025-10-21 14:50:03 +02:00

23 lines
586 B
Swift

// https://carrascomolina.com
import SwiftUI
@main
struct TheSwiftWeek: App {
var train = Train(name: "RE3412", color: Color.yellow, delay: 2 ){ Bike.trek}
var train2 = Train(name: "RE1423", delay: 1){ Bike(name: "Bulls", price: 199.90, color: Color.indigo )}
var body: some Scene {
WindowGroup {
VStack{
Text(.myVehicle)
TrainView(train: train)
TrainView(train: train2)
Spacer()
}
}
}
}