libscratchcpp
libscratchcpp copied to clipboard
Strings with precomposed characters are case sensitive
Value a = "đ";
Value b = "Đ";
bool eq = (a == b); // false
bool neq = (a != b); // true
In Scratch:
This also affects the string contains string block.