summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--theo.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/theo.go b/theo.go
index 376f5d7..5e5658d 100644
--- a/theo.go
+++ b/theo.go
@@ -1,6 +1,7 @@
// $OpenBSD: theo.c,v 1.143 2014/11/19 21:22:47 schwarze Exp $
// Copyright (c) 2002 Artur Grabowski <art@openbsd.org>
+// Package theo implements random quotes from Theo De Raadt
package theo
import (
@@ -125,6 +126,7 @@ func init() {
rand.Seed(n)
}
+// Theo returns random quote
func Theo() string {
n := rand.Intn(len(talk))
return talk[n]