Difference between revisions of "Os.day"
From ComputerCraft Wiki
m (Category change) |
(Changing int to number) |
||
(One intermediate revision by one other user not shown) | |||
Line 2: | Line 2: | ||
{{Function | {{Function | ||
|name=os.day | |name=os.day | ||
− | |returns=The current in-game day. | + | |returns={{type|number}} The current in-game day. |
|api=OS | |api=OS | ||
|addon=ComputerCraft | |addon=ComputerCraft |
Latest revision as of 14:01, 18 July 2013
Function os.day | |
Returns the current in-game day. | |
Syntax | os.day() |
Returns | number The current in-game day. |
Part of | ComputerCraft |
API | OS |
Examples
Example | |
Prints current day. | |
Code |
local day = os.day() |