thx for the reply
it still bothering me.
if i do
echo "\e[9mstrikethrough\e[0m"
output : strikethrough
but if i do
println("\\e[9mstrikethrough\\e[0m" )
output : \e[9mstrikethrough\e[0m
k
Klitos Kyriacou
09/16/2022, 9:30 AM
In Bash, you have to use
echo -e "\e[9mstrikethrough\e[0m"
- where the
-e
option makes the command interpret
\e
as the ESC character. In Kotlin, you have to be more specific as