My closet meat: Difference between revisions
Jump to navigation
Jump to search
imported>StDoodle m moved My closetmeat to My closet meat |
imported>StDoodle No edit summary |
||
Line 1: | Line 1: | ||
{{#vardefine:name|my_closet_meat}} | |||
{{#vardefine:return_type|int}} | |||
{{FunctionPage| | |||
name={{#var:name}}| | |||
function_category=Item Management| | |||
function1={{Function| | |||
name={{#var:name}}| | |||
aggregate={{#var:aggregate}}| | |||
return_type={{#var:return_type}}| | |||
return_also={{#var:return_also}}| | |||
}}| | |||
function_description=Returns the amount of meat stored in your Colossal Closet.| | |||
code1={{CodeSample| | |||
title=Code Sample| | |||
description=The following example shows how much meat you have between on-hand & in your closet.| | |||
code= | |||
<syntaxhighlight> | |||
print("You have " + my_meat() + " meat on hand."); | |||
print("You have " + my_closet_meat() + " meat in your closet."); | |||
print("Between the two, you have " + (my_meat() + my_closet_meat()) + " meat altogether."); | |||
</syntaxhighlight>}}| | |||
see_also={{SeeAlso|my_meat|print}}| | |||
}} |
Revision as of 13:22, 1 March 2010
Function Syntax
int my_closet_meat()
Returns the amount of meat stored in your Colossal Closet.
Code Sample
The following example shows how much meat you have between on-hand & in your closet.
print("You have " + my_meat() + " meat on hand.");
print("You have " + my_closet_meat() + " meat in your closet.");
print("Between the two, you have " + (my_meat() + my_closet_meat()) + " meat altogether.");
See Also