diff options
Diffstat (limited to 'starts/meaning-vm/main.cpp')
-rw-r--r-- | starts/meaning-vm/main.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/starts/meaning-vm/main.cpp b/starts/meaning-vm/main.cpp new file mode 100644 index 0000000..8fb4c64 --- /dev/null +++ b/starts/meaning-vm/main.cpp @@ -0,0 +1,12 @@ +#include "concept.hpp" +#include "helpers.hpp" + +using namespace std; + +#include <iostream> + +int main() +{ + cid concept = "concept"_c; + cout << str(concept) << endl; +} |