main.go
284 Bytes
package main
import (
"bufio"
"fmt"
"os"
)
func main(){
fmt.Print("Please input something\n“If you enter ‘exit’, the program will exit: ")
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
str := scanner.Text()
if str == "exit"{
os.Exit(0)
}
fmt.Println(str)
}