9951 explained code solutions for 126 technologies


luaGet formatted date/time


os.date("at %H:%M on %d %B, %Y")ctrl + c
os.date

returns current date formatted by a given string

%H

hour in 00...24 format

%M

minutes

%d

day

%B

full month name

%Y

full year