Revision 2 as of 2005-09-16 07:38:31

Clear message

(when there's no content, it's better to put something in and let others correct it, no?)

Currently there are only few guidelines for creating a page inside Python Wiki:

   1 from hello import world
   2 
   3 def say_hello():
   4     """Just say hello :)"""
   5     what = world()
   6     message = what.greet()  # no, there's no module named "hello" 
   7                             # in Python stdlib - at least not yet :)
   8     return message
   9 
  10 ### main
  11 say_hello()

Yeah, this is a stub only...

Unable to edit the page? See the FrontPage for instructions.