Skip to content

Commit

Permalink
Merge pull request #2 from BradLewis/master
Browse files Browse the repository at this point in the history
Adding a readline to the script so you can see output
  • Loading branch information
danesparza authored Sep 4, 2019
2 parents c250a06 + 6c1a4f8 commit aa48051
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ package main

import (
"fmt"
"golang.org/x/sys/windows/registry"
"log"

"golang.org/x/sys/windows/registry"
)

func main() {
Expand Down Expand Up @@ -95,5 +96,7 @@ func main() {
}
}

fmt.Println("\nFinished.")
fmt.Println("\nFinished. Press Enter to close.")
var input string
fmt.Scanln(&input)
}

0 comments on commit aa48051

Please sign in to comment.