summaryrefslogtreecommitdiff
path: root/example2
diff options
context:
space:
mode:
Diffstat (limited to 'example2')
-rw-r--r--example2/Makefile3
-rw-r--r--example2/main.go11
2 files changed, 0 insertions, 14 deletions
diff --git a/example2/Makefile b/example2/Makefile
deleted file mode 100644
index 7b4c2b6..0000000
--- a/example2/Makefile
+++ /dev/null
@@ -1,3 +0,0 @@
-all:
- # go build
- GO111MODULE="off" go run main.go
diff --git a/example2/main.go b/example2/main.go
deleted file mode 100644
index 2593a2b..0000000
--- a/example2/main.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package main
-
-import "log"
-// import "fmt"
-import "go.wit.com/lib/gui/shell"
-
-func main() {
- err := shell.Run("cat /etc/issue")
- log.Println("cat /etc/issue returned", err)
- // fmt.Print(output)
-}