summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-2/funcs.cpp
blob: 4ee02a4dedd85dc95e02f4863902e28944b57341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "funcs.hp"

#include "../level-1/sugar.hpp"

namespace intellect {
namespace level2 {

level2::ref context()
{
	static thread_local level1::ref ctx = level1::a("context");
	return ctx;
}

}
}