API Article: Difference between revisions
From Vendetta Lua
Jump to navigationJump to search
split |
No edit summary |
||
Line 1: | Line 1: | ||
{{Function | |||
| name = Article | |||
| desc = prepends the appropriate article to the string ''word'' | |||
| arg1_name = word | |||
| arg1_type = string | |||
prepends the appropriate article to the string ''word'' | | arg1_desc = string to prepend an article to. | ||
| ret1_name = out | |||
| ret1_type = string | |||
| ret1_desc = the string with an article prepended. | |||
| notes = '''Example''':<br> | |||
'''Example''':<br> | |||
<source lang="lua">Article("apple") -> "an apple"</source><br> | <source lang="lua">Article("apple") -> "an apple"</source><br> | ||
}} |
Latest revision as of 04:19, 1 April 2011
Article
Type | Name | Description |
---|---|---|
string | word | string to prepend an article to. |
Type | Name | Description |
---|---|---|
string | out | the string with an article prepended. |
<source lang="lua">Article("apple") -> "an apple"</source>