diff options
| -rw-r--r-- | main.go | 2 | ||||
| -rw-r--r-- | stdin.go | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -21,6 +21,8 @@ func init() { log.Log(INFO, "Init() END") + showOptions() + go simpleStdin() } @@ -25,6 +25,8 @@ func showOptions() { fmt.Println("") fmt.Println("Enter the number of the widget to click:") fmt.Print("Option: ") + fmt.Fprintf(os.Stderr, "Option:\n") + fmt.Fprintf(os.Stderr, "Option: ") } func simpleStdin() { |
