-
Notifications
You must be signed in to change notification settings - Fork 2
/
bite.html
19 lines (17 loc) · 1.06 KB
/
bite.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<p>In this Bite you complete <code>print_hanging_indents</code> to print a poem (or text) in a nicer way. </p><p>For example calling it on (part of) Christina Rosetti's <i>Remember</i> it should convert:<br><pre>
Remember me when I am gone away,
Gone far away into the silent land;
When you can no more hold me by the hand,
Nor I half turn to go yet turning stay.
Remember me when no more day by day
You tell me of our future that you planned:
Only remember me; you understand
</pre>to: <pre>
Remember me when I am gone away,
Gone far away into the silent land;
When you can no more hold me by the hand,
Nor I half turn to go yet turning stay.
Remember me when no more day by day
You tell me of our future that you planned:
Only remember me; you understand
</pre></p><p><strong><code>print</code></strong> the resulting poem (don't return it)! The tests include another text snippet from Shakespeare. Have fun!</p>