os.day

From ComputerCraft Wiki
Revision as of 20:58, 3 June 2013 by SuicidalSTDz (Talk | contribs) (Added integer tag)

Jump to: navigation, search


Grid Redstone.png  Function os.day
Returns the current in-game day.
Syntax os.day()
Returns int The current in-game day.
Part of ComputerCraft
API OS

Examples

Grid paper.png  Example
Prints current day.
Code
local day = os.day()
print(day)