Challenge: Creating a Structure
Task
Create a structure named Car
with fields company
, owner
, miles
, and year
in the same order. Assign appropriate data types to them based on the provided code.
index.go
12345678910111213141516package main import "fmt" // Write code below this line // Write code above this line func main() { var car1 Car car1.company = "Tesla" car1.owner = "Tegmark" car1.miles = 10.7 car1.year = 2021 fmt.Println(car1) }
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 6. Capitolo 8
Chieda ad AI
Chieda ad AI
Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione
Awesome!
Completion rate improved to 1.96
Challenge: Creating a Structure
Scorri per mostrare il menu
Task
Create a structure named Car
with fields company
, owner
, miles
, and year
in the same order. Assign appropriate data types to them based on the provided code.
index.go
12345678910111213141516package main import "fmt" // Write code below this line // Write code above this line func main() { var car1 Car car1.company = "Tesla" car1.owner = "Tegmark" car1.miles = 10.7 car1.year = 2021 fmt.Println(car1) }
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 6. Capitolo 8