My closet meat: Difference between revisions
Jump to navigation
Jump to search
imported>Bale test unsuccessful |
imported>Bale mNo edit summary |
||
Line 5: | Line 5: | ||
FunctionPage| | FunctionPage| | ||
name={{#var:name}}| | name={{#var:name}}| | ||
function1={{Function| | function1={{Function| | ||
Line 28: | Line 27: | ||
see_also={{SeeAlso|my_meat|print}}| | see_also={{SeeAlso|my_meat|print}}| | ||
}} | }} | ||
[[Category:Item Management]] |
Revision as of 21:44, 21 May 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.");