“Lua bekomme Zeit” Code-Antworten

os.date lua

--Get's the current time

--Examples
print (os.date ("%x")) --> 25/04/07
print (os.date ("%c")) --> 25/04/07 10:10:05
print (os.date ("%A, %m %B %Y")) --> Wednesday, 04 April 2007

t = os.date ("*t") --> produces a table like this:

  t.sec=18
  t.min=13
  t.hour=10
  t.day=25
  t.month=4
  t.year=2007
  t.wday=4
  t.yday=115
  t.isdst=false
Adventurous Ant

Lua bekomme Zeit

require "socket"
print("Milliseconds: " .. socket.gettime()*1000)
Real Rhinoceros

Ähnliche Antworten wie “Lua bekomme Zeit”

Fragen ähnlich wie “Lua bekomme Zeit”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen