-On [20080424 13:16], bdsatish ([EMAIL PROTECTED]) wrote:
>#!/usr/bin/env
#!/usr/bin/env what? I guess you meant #!/usr/bin/env python
>"""
>Author: BDS
>Version: 1.0
>"""
>
>def Hello():
>""" Prints a Hello World to the screen"""
>print "Hello, World"
>
>I want to use ReSt (reStructured
Hi all,
I have a python prog:
#!/usr/bin/env
"""
Author: BDS
Version: 1.0
"""
def Hello():
""" Prints a Hello World to the screen"""
print "Hello, World"
if __name__ == "__main__":
Hello()
I want to use ReSt (reStructuredText) in my docstrings or comments.
Any example of how