From c455e7b67d2e55e6ed03e3449203d4e307f5a7dd Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 13 Sep 2024 20:18:08 -0400 Subject: Rename builtins/ -> stdlib/ --- stdlib/tomo.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 stdlib/tomo.h (limited to 'stdlib/tomo.h') diff --git a/stdlib/tomo.h b/stdlib/tomo.h new file mode 100644 index 00000000..7db0f490 --- /dev/null +++ b/stdlib/tomo.h @@ -0,0 +1,34 @@ +#pragma once + +// All of the different builtin modules can be included by including this one +// import + +#include +#include +#include +#include +#include + +#include "arrays.h" +#include "bools.h" +#include "c_strings.h" +#include "channels.h" +#include "datatypes.h" +#include "functiontype.h" +#include "integers.h" +#include "memory.h" +#include "metamethods.h" +#include "nums.h" +#include "optionals.h" +#include "paths.h" +#include "patterns.h" +#include "pointers.h" +#include "ranges.h" +#include "shell.h" +#include "siphash.h" +#include "tables.h" +#include "text.h" +#include "threads.h" +#include "types.h" + +// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 -- cgit v1.2.3