I'm just wondering what could be the reason for this line to return a formatted string
print(os.time{year=2018, month=11, day=11, hour=11})
returns 2018-11-11 11:00:00
where if I go to lua demo it returns date in numbers
is that a reason because of system difference? What can I do to get these numbers? My main goal is to add certain of days to the date. In following format :
oldDate + (60*60*24*daysToAdd)
os.time? - lhf