summaryrefslogtreecommitdiff
path: root/example2
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-03-09 17:46:36 -0600
committerJeff Carr <[email protected]>2024-03-09 17:46:36 -0600
commitfe94c0057bd0c44317f22afeb0fe8432e0b18c64 (patch)
tree7d9041456dc538ce592981344403cda7197d3441 /example2
parentf163738c86b84d8b6ddf12326d835de0191834bd (diff)
remove some of the wierder code
Signed-off-by: Jeff Carr <[email protected]>
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)
-}