~~Title: IsPunct~~
IsPunct && bool && **True** if //string// consists only of punctuation characters. &&
string && string && String to test.
Returns **True** if //string// consists entirely of punctuation characters, otherwise returns **False**.
//Example://
Output(IsPunct("!.,;:"))
--> true
Output(IsPunct("!.,j:"))
--> false
//See also://\\
[[isalpha]]\\
[[isdigit]]\\
[[islower]]\\
[[isspace]]\\
[[isupper]]\\