Difference between revisions of "Main Page"
Jump to navigation
Jump to search
Kevin Dunn (talk | contribs) m |
Kevin Dunn (talk | contribs) m |
||
Line 1: | Line 1: | ||
= | * Try it out: | ||
<syntaxhighlight lang="python"># Hello World in Python | |||
def main(): | |||
print "Hello World!" | |||
if __name__ == '__main__': | |||
main(s) | |||
</syntaxhighlight> | |||
<syntaxhighlight lang="python"> | |||
Place source code here; replace lang if necessary | |||
</syntaxhighlight> |
Revision as of 03:43, 22 August 2012
- Try it out:
# Hello World in Python
def main():
print "Hello World!"
if __name__ == '__main__':
main(s)
Place source code here; replace lang if necessary