about summary refs log tree commit diff stats
path: root/pkg/pkg.go
blob: e2b86b6bb93ffe241e838fbde8e61665e3f5fd41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// package pkg is a package.
package pkg

// Day represents the day of the week.
type Day int

// Days of the week.
const (
	Monday Day = iota
	Tuesday
	Wednesday
	Thursday
	Friday
	Saturday
	Sunday
)