sbyrne
01/21/2020, 1:45 PMSystem.out.print("\033[100D"). Kotlin does not like \033, how do I do that?ribesg
01/21/2020, 1:46 PM\\033LastExceed
01/21/2020, 1:48 PM\0 is an illegal escape. either escape the escape character as demonstrated above, or use a literal string
"""\033"""sbyrne
01/21/2020, 1:57 PM\\ gives me a literal \. \u001b does what I want.sbyrne
01/21/2020, 1:58 PM\0... means octal. Kotlin doesn't do that.