gokedex/command_exit.go

13 lines
140 B
Go

package main
import (
"fmt"
"os"
)
func commandExit() error {
fmt.Println("Closing the Pokedex... Goodbye!")
os.Exit(0)
return nil
}