scratchcpp / libscratchcpp

C++ library for building Scratch project players
Apache License 2.0
24 stars 8 forks source link

List to string conversion doesn't work correctly for booleans #601

Open adazem009 opened 1 week ago

adazem009 commented 1 week ago
List list("", "");
list.append(true);
list.append(false);
list.toString() // returns "truefalse" instead of "true false"