pokedex_cli/command_exit.go
2025-09-28 21:15:55 +01:00

13 lines
140 B
Go

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