Template:Comment
From FreeAllegiance Wiki
Jump to navigationJump to search
{{{1}}}
Usage sample
def list(*stuff): #accept a list as argument</noinclude>
Usage sample
def list(*stuff): Template loop detected: Template:Comment return ", ".join(stuff) Template loop detected: Template:Comment print list("foo") print list("foo", "bar") print list("foo", "bar", "bananana") return ", ".join(stuff) #All of the following are valid calls.</noinclude>
Usage sample
def list(*stuff): Template loop detected: Template:Comment return ", ".join(stuff) Template loop detected: Template:Comment print list("foo") print list("foo", "bar") print list("foo", "bar", "bananana") print list("foo") print list("foo", "bar") print list("foo", "bar", "bananana")