스크립트 오류: 모듈이 nil 값을 반환했습니다. 내보내기 테이블을 반환해야 합니다.
local p = {} function p.sort(str) t = {} for i = 1, #str do t[i] = str:sub(i, i) end table.sort(t); return table.concat(t, ""); end