12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
if chunk == nil then error(err) end
lib[name] = chunk(lib, ident, path)
end
component 'dbg'
-- primitive manip
component 'tbl'
component 'class'
component 'math'
component 'str'
-- reading and writing data formats
component 'marshal'
-- classes
component 'color'
|
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
if chunk == nil then error(err) end
lib[name] = chunk(lib, ident, path)
end
component 'dbg'
-- primitive manip
component 'class'
component 'math'
component 'tbl'
component 'str'
-- reading and writing data formats
component 'marshal'
-- classes
component 'color'
|