Template:Comment

From FreeAllegiance Wiki
Revision as of 21:23, 13 February 2009 by Juckto (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

{{{1}}}

Usage

Code code code {{Comment|Your comment here}}


Example

def list(*stuff): {{comment|#accept a list as argument}}
  return ", ".join(stuff)

Gives:

def list(*stuff): #accept a list as argument
  return ", ".join(stuff)