...
| Code Block |
|---|
[ 'BASIC LATIN', 'basic latin', 'BasicLatin', 'baSiclaTin', 'BaSiC LaTiN',
'BASIC_LATIN', 'BaSiC_LaTiN' ].
each{ assert Character.UnicodeBlock.forName(it).toString() == 'BASIC_LATIN' }
|
Constructing and Using Characters
We can't represent Characters directly in our programs, but must construct them from a string:
...