Midoriya
09/16/2022, 3:11 AMJohann Pardanaud
09/16/2022, 7:23 AMMidoriya
09/16/2022, 8:59 AMKlitos Kyriacou
09/16/2022, 9:30 AMecho -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 "\e"
is a syntax error:
println("\u001B[9mstrikethrough\u001B[0m")
(The ESC character is Unicode code point 001B)Midoriya
09/16/2022, 9:33 AM