summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/main.cpp
blob: 13929578c8bcc0e19fe8fe99e5eda06c37f2d983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "concept.hpp"
#include "helpers.hpp"

using namespace std;

#include <iostream>

int main()
{
	decl(fruit, banana, is);

	banana->link(is, fruit);
	cout << banana << "-" << is << "-" << fruit << endl;
}