diff --git a/ml.h b/ml.h index 45faf33..7c618fb 100644 --- a/ml.h +++ b/ml.h @@ -7,14 +7,14 @@ #include #include -const std::string VERSION = "mi 0.1 (" __DATE__ " " __TIME__ ")"; +const std::string VERSION = "ml 0.1 (" __DATE__ " " __TIME__ ")"; const std::string STDLIB_LOADER = R"( (do (define ___lib_path "/usr/local/var/mlisp") (if (is-dir? ___lib_path) (for file (ls-dir ___lib_path) - (if (string-regex? file "^.*\.l(i)?sp$") + (if (string-regex? file "^stdlib\.lsp$") (include (+ ___lib_path "/" file))) ))) )";