aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/myshell/main.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/cmd/myshell/main.go b/cmd/myshell/main.go
index 6c65d9c..f5c858a 100644
--- a/cmd/myshell/main.go
+++ b/cmd/myshell/main.go
@@ -7,11 +7,7 @@ import (
)
func main() {
- // You can use print statements as follows for debugging, they'll be visible when running tests.
- fmt.Println("Logs from your program will appear here!")
-
- // Uncomment this block to pass the first stage
- // fmt.Fprint(os.Stdout, "$ ")
+ fmt.Fprint(os.Stdout, "$ ")
// Wait for user input
bufio.NewReader(os.Stdin).ReadString('\n')