Schulung_iOS/Playground.swift
Ingo Rohlf 7d33f7849f + Bike
2025-10-20 13:32:36 +02:00

17 lines
293 B
Swift

// https://carrascomolina.com
import Playgrounds
struct Bike {
var name: String
var color: String
static let trek = Bike(name: "Trek", color: "red" )
}
#Playground {
var greeting = "Hallo Playground"
let bike = Bike.trek
bike.color
// write code here
}