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

using namespace std;

#include <iostream>

int main()
{
	r(fruit);
	r(banana);
	r(is);
	banana->link(is, fruit);
	cout << banana << "-" << is << "-" << fruit << endl;
}