package main

import "fmt"

type About struct {
    Short       string
    Description string
}

type Contact struct {
    Name    string
    Email   string
    Address string
}

const title = "First Byte"

func main() {
    about := About{
        Short:       "A one man consultant company.",
        Description: "Provides development services with a focus on mobile devices.",
    }

    contact := Contact{
        Name:    "First Byte AB",
        Email:   "anders(at)firstbyte.se",
        Address: "Slussgatan 12J, 21130 Malmö",
    }

    fmt.Printf("%s - %s\n\n", title, about.Short)
    fmt.Printf("What: %s\n", about.Description)
    fmt.Printf("Where: %s [%s, %s]\n", contact.Email, contact.Name, contact.Address)
}