summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-1/concepts.hpp
blob: 7aa73941918eb6ddcddf1930c320012575fb9efe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include "ref.hpp"
#include "sugar.hpp"

namespace intellect {
namespace level1 {

namespace concepts {

extern ref name; // used as the link to value<std::string> naming each concept
extern ref is; // a link to define group relationships, links to the more general class
extern ref anonymous; // a group given concepts with generated names
extern ref link; // TODO: for concepts that are links, link them with is=link
//extern ref true, false; <-- casting provides as if these were declared

}

}
}