I want to create an array of chars where some of the values are non-printable characters but not spaces: I tried:
a = ['a', 'b', \n]
a = ['a', 'b', '']
a = ['a', 'b', nothing]
without success.
I want to create an array of chars where some of the values are non-printable characters but not spaces: I tried:
a = ['a', 'b', \n]
a = ['a', 'b', '']
a = ['a', 'b', nothing]
without success.