diff -r 88a01948450d -r d33698326409 getting_started_with_strings/quickref.tex --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/getting_started_with_strings/quickref.tex Wed Dec 01 16:51:35 2010 +0530 @@ -0,0 +1,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.