1
This commit is contained in:
parent
6bf47d6566
commit
7bd1467401
11
a8/lisp.h
11
a8/lisp.h
@ -6,11 +6,19 @@
|
|||||||
列表: list
|
列表: list
|
||||||
原子: atom
|
原子: atom
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace a8
|
namespace a8
|
||||||
{
|
{
|
||||||
|
|
||||||
namespace lisp
|
namespace lisp
|
||||||
{
|
{
|
||||||
|
enum class ValueType : int
|
||||||
|
{
|
||||||
|
kAtom = 1,
|
||||||
|
kList = 2,
|
||||||
|
kSymbol = 3,
|
||||||
|
kCProc = 4,
|
||||||
|
};
|
||||||
|
|
||||||
struct List
|
struct List
|
||||||
{
|
{
|
||||||
@ -29,7 +37,8 @@ namespace a8
|
|||||||
|
|
||||||
struct Value
|
struct Value
|
||||||
{
|
{
|
||||||
int value_type = 0;
|
ValueType type;
|
||||||
|
std::shared_ptr<Symbol> symbol;
|
||||||
std::shared_ptr<Atom> atom;
|
std::shared_ptr<Atom> atom;
|
||||||
std::shared_ptr<List> list;
|
std::shared_ptr<List> list;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user