TheMathemagicians/sevenkeys/logic/storage.go

13 lines
166 B
Go

package logic
import "fmt"
func GetStorageLocation() string {
fmt.Print("Enter storage location: ")
var response string
fmt.Scan(&response)
return response
}