diff options
author | aob <aob@tilde.institute> | 2020-08-23 20:24:26 -0400 |
---|---|---|
committer | aob <aob@tilde.institute> | 2020-08-23 20:24:26 -0400 |
commit | af39f8d8e1688dd7b90aa7f727a738fa321c0502 (patch) | |
tree | a0fa8b9eaac37b6a3bab8c4f68109b509ba8977c | |
parent | da8cf7fdc1b8836ebc68a202f5f6f3cf4221f02e (diff) | |
download | hello-af39f8d8e1688dd7b90aa7f727a738fa321c0502.tar.gz |
add subdir
-rw-r--r-- | pkg/pkg.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pkg/pkg.go b/pkg/pkg.go new file mode 100644 index 0000000..e2b86b6 --- /dev/null +++ b/pkg/pkg.go @@ -0,0 +1,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 +) |