|
|
||
|
Lua 5.4.2 Copyright (C) 1994-2020 Lua.org, PUC-Rio
> string.format("%p", print)
0x5626ad9b2709
> print(print)
function: 0x5626ad9b2709
On my Windows 10 these addresses are output without 0x. Why is it different?
Lua 5.4.3 Copyright (C) 1994-2021 Lua.org, PUC-Rio
> string.format("%p", print)
000000006671bd10
> print
function: 000000006671bd10
--
Shmuel