Initial commit

This commit is contained in:
2025-09-03 03:20:58 -07:00
commit 1e16b4d34e
20 changed files with 455 additions and 0 deletions

20
include/lisp/string.h Normal file
View File

@ -0,0 +1,20 @@
#ifndef INCLUDED_STRING_H
#define INCLUDED_STRING_H
#include "lisp/array.h"
#include "lisp/util.h"
LISP_BEGIN_DECLS
DECLARE_CLASS(String);
struct String {
Array base;
bool borrowed;
};
struct StringClass {
ArrayClass base;
};
LISP_END_DECLS
#endif