i am making a CLI app in rust, and the app includes multiple languages. one of those languages is hebrew, which is a RTL language. when writing in hebrew, for example:
println!("קוד לדוגמא");
it comes out as
אמגודל דוק
which is the original message in reverse.
i know i can just write the text and reverse, and then it works, but i have a lot of text to write, and i don't want to have any side effects from this. is there any library or configuration in rust in order to write RTL text?
\u{202E}קוד לדוגמאjust for laughs, which includes the RIGHT-TO-LEFT-OVERRIDE unicode character.