aboutsummaryrefslogtreecommitdiffstats
path: root/exercises/structs/structs1/main.go
blob: 77090b39d026247c6d82cac278a0d830b4600df4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// structs1
// Make me compile!
//
// I AM NOT DONE
package main

import "fmt"

type Person struct {

}

func main() {
	fmt.Printf("Person %s and age %d", person.name, person.age)
}