diff options
Diffstat (limited to 'cmd/myshell/main.go')
| -rw-r--r-- | cmd/myshell/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/myshell/main.go b/cmd/myshell/main.go index 05a97a7..9ccf88c 100644 --- a/cmd/myshell/main.go +++ b/cmd/myshell/main.go @@ -45,7 +45,7 @@ func main() { exec := path + "/" + command[1] if _, err := os.Stat(exec); err == nil { - fmt.Printf("%s is %s", command[1], exec) + fmt.Printf("%s is %s\n", command[1], exec) return } } |