From: Jochen Sprickerhof <jspricke@debian.org>
Date: Sun, 19 Sep 2021 09:39:30 +0200
Subject: Drop example executable

---
 cmd/words/main.go | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 cmd/words/main.go

diff --git a/cmd/words/main.go b/cmd/words/main.go
deleted file mode 100644
index 0cb8189..0000000
--- a/cmd/words/main.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package main
-
-import (
-	"bufio"
-	"fmt"
-	"log"
-	"os"
-
-	"github.com/mattn/go-unicodeclass"
-)
-
-func main() {
-	scan := bufio.NewScanner(os.Stdin)
-	scan.Split(unicodeclass.SplitClass)
-	for scan.Scan() {
-		fmt.Println(scan.Text())
-	}
-	if scan.Err() != nil {
-		log.Fatal(scan.Err())
-	}
-}
