definition of struct swift code example
Example: create a structure swift
struct Example {
// your code/variables here...
var name = "example"
}
var example = Example() // creates a reference to the structure
print(example.name) // accesses the name variable from the structure