As part of this app, you need to define a struct to represent a user 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