15 lines
261 B
V
15 lines
261 B
V
module contact
|
|
|
|
struct ContactPage {
|
|
address string
|
|
phone string
|
|
email string
|
|
}
|
|
|
|
fn default_contact_page() ContactPage {
|
|
return ContactPage{
|
|
address: '121 King Street, Melbourne, Australia'
|
|
phone: '+123 456 789 000'
|
|
email: 'company@email.com'
|
|
}
|
|
} |