17 lines
293 B
Swift
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
|
|
}
|