Move TODO from being an actual block of visible text to a comment

This is cleaner and more respectable :)
This commit is contained in:
Christopher Allan Webber 2013-05-20 18:26:36 -05:00
parent e5de92178d
commit 0f266fee9b

View File

@ -2,6 +2,14 @@
Tutorial
========
.. TODO
..
.. - How do I index into arrays or dictionaries?
.. - How do I do array ranges? e.g. x[5:] or y[2:10]
.. - Blow your mind with macros!
.. - Where's my banana???
.. - Mention that you can import .hy files in .py files and vice versa!
Welcome to the Hy tutorial!
In a nutshell, Hy is a lisp dialect, but one that converts its
@ -517,13 +525,3 @@ Which, of course, expands out to:
(wc (grep (cat "/usr/share/dict/words") "-E" "^hy") "-l")
Much more readable, no? Use the threading macro!
TODO
====
- How do I index into arrays or dictionaries?
- How do I do array ranges? e.g. x[5:] or y[2:10]
- Blow your mind with macros!
- Where's my banana???
- Mention that you can import .hy files in .py files and vice versa!