import std: isUpper, writeln;
void main(){
writeln(isUpper('A'));
}Why I get this error? How can I use isUpper()?
Marcone via Digitalmars-d-learn Tue, 14 Jul 2020 13:40:30 -0700
import std: isUpper, writeln;
void main(){
writeln(isUpper('A'));
}Why I get this error? How can I use isUpper()?