이스케이프 문자

문자열 리터럴 안에 다른 C-like 언어들에서 사용되는 \n, \t, \, “ 등의 이스케이프 문자를 사용할 수 있다.

1
print("\"Hello!\", said the program.");

텍스트에서 유니코드를 표현하기 위해 2 바이트와 4 바이트 16진수 이스케이프 문자도 사용할 수 있다.

1
2
3
4
5
6
7
8
"The mathematical constant \{#03C0}, the
ratio of the circumference of a circle
to its diameter."
Float pi=calculatePi();
"The mathematical constant \{#0001D452},
the base of the natural logarithm."
Float e=calculateE();

Ceylon의 문자열은 UTF-32 문자로 구성된다. 나중에 살펴볼 것이다.

Share Comments