To plural: Difference between revisions

From Kolmafia
Jump to navigation Jump to search
imported>Grotfang
mNo edit summary
imported>Grotfang
mNo edit summary
Line 26: Line 26:
<syntaxhighlight>
<syntaxhighlight>
eat(3 , $item[hot hi mein]);
eat(3 , $item[hot hi mein]);
print( "You have eaten 3 " + to_plural($item[hot hi mein]));
print("You have eaten 3 " + to_plural($item[hot hi mein]));
</syntaxhighlight>
</syntaxhighlight>
}}|
}}|

Revision as of 23:05, 8 March 2010

Function Syntax

string to_plural(item it )

  • it is the item you want to return the plural of.

Returns the plural of an item in the form of a string.

Code Samples

Prints diet information after eating.

eat(3 , $item[hot hi mein]);
print("You have eaten 3 " + to_plural($item[hot hi mein]));

See Also

eat()