// retoor <retoor@molodetz.nl>
System.print("hello".isLower) // expect: true
System.print("Hello".isLower) // expect: false
System.print("HELLO".isLower) // expect: false
System.print("123".isLower) // expect: false
System.print("".isLower) // expect: false
System.print("HELLO".isUpper) // expect: true
System.print("Hello".isUpper) // expect: false
System.print("hello".isUpper) // expect: false
System.print("123".isUpper) // expect: false
System.print("".isUpper) // expect: false
System.print("12345".isDigit) // expect: true
System.print("123a5".isDigit) // expect: false
System.print("".isDigit) // expect: false
System.print("0".isDigit) // expect: true
System.print("hello".isAlpha) // expect: true
System.print("Hello".isAlpha) // expect: true
System.print("hello1".isAlpha) // expect: false
System.print("".isAlpha) // expect: false
System.print("hello123".isAlphaNumeric) // expect: true
System.print("Hello".isAlphaNumeric) // expect: true
System.print("12345".isAlphaNumeric) // expect: true
System.print("hello!".isAlphaNumeric) // expect: false
System.print("".isAlphaNumeric) // expect: false
System.print(" ".isSpace) // expect: true
System.print(" \t\n".isSpace) // expect: true
System.print("hello".isSpace) // expect: false
System.print("".isSpace) // expect: false
System.print("hello".isAscii) // expect: true
System.print("123!@#".isAscii) // expect: true
System.print("".isAscii) // expect: true