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

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


namespace intellect {
using namespace level1;
namespace level2 {

ref context()
{
	static thread_local auto ctx = a("context");
	return ctx;
}

}
}