Files
learngo/11-if/02-if-statement/05-challenge-userpass/01-1st-challenge/03-solution-refactor/main.go

42 lines
684 B
Go
Raw Normal View History

2018-10-13 23:30:21 +03:00
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
import (
"fmt"
"os"
)
const (
usage = "Usage: [username] [password]"
errUser = "Access denied for %q.\n"
errPwd = "Invalid password for %q.\n"
accessOK = "Access granted to %q.\n"
user = "jack"
pass = "1888"
)
func main() {
args := os.Args
if len(args) != 3 {
fmt.Println(usage)
return
}
u, p := args[1], args[2]
if u != user {
fmt.Printf(errUser, u)
} else if p != pass {
fmt.Printf(errPwd, u)
} else {
fmt.Printf(accessOK, u)
}
}