Lua 문자열 합치기 ..

1 개요[ | ]

Lua 문자열 합치기 ..
lua
Copy
print ( "abc" .. "def" ) -- abcdef
Loading
lua
Copy
print ( "abc" .. "def" .. "ghi" ) -- abcdefghi
Loading

2 같이 보기[ | ]