summaryrefslogtreecommitdiff
path: root/getting_started_with_strings/quickref.tex
blob: 3bd70554fff538162d04db0d8ffde7aee8ad9968 (plain)
1
2
3
4
5
6
7
8
Creating a string:\\
{\ex \lstinline|    s = ``Hello World''|} -- Single quotes and triple
quotes can also be used.  

Accessing individual elements:\\
{\ex \lstinline|   s[5]|} -- Elements can be accessed with their index

Strings are immutable.