Difference between revisions of "User:Draugath"

From Vendetta Lua
Jump to: navigation, search
(Template:Function_wrapped)
Line 8: Line 8:
 
This template will initially be the one that provides the final output.  More templates may be created later.<br />
 
This template will initially be the one that provides the final output.  More templates may be created later.<br />
 
[[Template:Function_wrapped]]
 
[[Template:Function_wrapped]]
 +
 +
==Example==
 +
{{Function
 +
| name        = FunctionName
 +
| desc        = Function description
 +
| arg1_name    = arg1
 +
| arg1_type    = number
 +
| arg1_desc    = argument (1,2,...,n) description, including examples if so desired
 +
| ret1_name    = ret1
 +
| ret1_type    = string
 +
| ret1_desc    = return value (1,2,...,n) description, including examples if so desired
 +
| notes        = notes
 +
}}
 +
{{#if: | yes | no}}
 +
{{#if: string | yes | no}}

Revision as of 08:59, 30 March 2011

I'm going to be working on a series of Templates for easing the creation of function entries and producing identical results across all function entries.

Template:Function

This template will be the top-level wrapper template that handles input and passing of information.
Template:Function

Template:Function_wrapped

This template will initially be the one that provides the final output. More templates may be created later.
Template:Function_wrapped

Example

FunctionName

Definition

FunctionName( number  arg1) ->  string  ret1
Description

Function description
Arguments

Type Name Description
number arg1 argument (1,2,...,n) description, including examples if so desired
Returns

Type Name Description
string ret1 return value (1,2,...,n) description, including examples if so desired
Notes

notes



no yes