pashmak

Function die()

This function prints something and exits program.

For example:

die("Good bye")

Also you can use this without argument:

die()

By default, this function exits with 1 exit code. You can change exit code by passing second argument:

die("good bye", 100)