Template:Comment: Difference between revisions

From FreeAllegiance Wiki
Jump to navigationJump to search
(Whoops.)
No edit summary
Line 1: Line 1:
<span style="color:#888">''{{{1}}}''</span><noinclude>
<span style="color:#888">''{{{1}}}''</span><noinclude>


[[Category:Template]]
[[Category:Templates]]


== Usage sample ==
== Usage sample ==

Revision as of 15:30, 13 February 2009

{{{1}}}

Usage sample

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

#All of the following are valid calls.
print list("foo")
print list("foo", "bar")
print list("foo", "bar", "bananana")