var
s1: string = "a"
s2: string = r"\n"
c1: char
c2: char
c1 = @s1[0]
c2 = ???
RunHow do I convert the string `r"\n"` to its char representation `'\n'`?
var
s1: string = "a"
s2: string = r"\n"
c1: char
c2: char
c1 = @s1[0]
c2 = ???
RunHow do I convert the string `r"\n"` to its char representation `'\n'`?