18 lines
568 B
Text
18 lines
568 B
Text
/// Module jc contains procedures for working with memory,
|
|
/// arrays, and strings; as well as helpful macros and
|
|
/// constants.
|
|
///
|
|
/// Additionally, it provides a platform-independant
|
|
/// interface for interacting with the target operating
|
|
/// system.
|
|
#module_parameters(RunTests := false);
|
|
|
|
#load "+internal/builtin.jai";
|
|
#load "+internal/array.jai";
|
|
#load "+internal/map.jai";
|
|
#load "+internal/hashing.jai";
|
|
#load "+internal/memory.jai";
|
|
#load "+internal/arenas.jai";
|
|
#load "+internal/testing.jai";
|
|
#load "+internal/keywords.jai";
|
|
#load "+internal/type_info.jai";
|