14.2 전역변수 선언에서 p180 예제에 에러가 나는데요.

6 views
Skip to first unread message

zemyblue

unread,
Oct 16, 2007, 2:18:19 AM10/16/07
to luausers-kr
14.2 전역 변수 선언에 나오는 (p180)의 예제를 실행하면 다음과 같은 에러가 나면서 Lua 프롬프트 모드에서 나오는데
요 왜 그런가요? 다음 예제를 실행해 볼 수 없어요. OTL

setmetatable(_G, {
__newindex = function (t, n, v)
error("attempt to write to undeclared variable " .. n , 2)
end,

__index = function (_, n)
error("attempt to read to undeclared variable " .. n, 2)
end
})

실행시

attempt to read to undeclared variable _PROMPT
D:\>

Reply all
Reply to author
Forward
0 new messages