1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<span class="c"># Here's some new strange stuff, remember type it exactly.</span> <span class="nv">days</span> <span class="o">=</span> <span class="s2">"Mon Tue Wed Thu Fri Sat Sun"</span> <span class="nv">months</span> <span class="o">=</span> <span class="s2">"Jan\nFeb\nMar\nApr\nMay\nJun\nJul\nAug"</span> puts <span class="s2">"Here are the days: "</span>, days puts <span class="s2">"Here are the months: "</span>, months puts <span class="s"><<PARAGRAPH</span> <span class="s">There's something going on here.</span> <span class="s">With the three double-quotes.</span> <span class="s">We'll be able to type as much as we like.</span> <span class="s">Even 4 lines if we want, or 5, or 6.</span> <span class="s">PARAGRAPH</span> |
