# newline escape test


echo \
						This text will be printed on \
								a single line
echo This text will have 10 spaces between the braces {          \
                                }
echo This text will have no spaces between braces {\
                                }
echo Single-space separated numbers : { 1 \
                             2 \
                             3 \
                             4 \
                             5 \
                             6 \
                             7 \
                             8 }

echo Single-space separater letters : (tabs) { a \
										b \
										c \
										d \
										e \
											}

echo "     A lot of spaces before this string"
echo "     1   2   3   \
           4   5   6"
echo 1  2   3   4   5   6
