Files
first/tests/1test_string.cpp
2024-01-13 17:09:38 +01:00

14 lines
289 B
C++

#include "../core_library/core.c"
int main() {
S8_String s = "mrówka";
bool found_two_byte = false;
For(s) {
if (it.utf8_codepoint_byte_size == 2) {
found_two_byte = true;
IO_Assert(it.i == 2);
}
}
IO_Assert(found_two_byte);
}