Timer and Text?

How can i display a text after 30 seconds???

local function displayMyText() local myText = display.newText("My text!", display.contentWidth \* 0.5, display.contentHeight \* 0.5, native.systemFont, 12); end timer.performWithDelay(30000, displayMyText);

[lua]
local function showText()
local myText = display.newText(…)
end

timer.performWithDelay(30000, showText)

[/lua]

local function displayMyText() local myText = display.newText("My text!", display.contentWidth \* 0.5, display.contentHeight \* 0.5, native.systemFont, 12); end timer.performWithDelay(30000, displayMyText);

[lua]
local function showText()
local myText = display.newText(…)
end

timer.performWithDelay(30000, showText)

[/lua]