summaryrefslogtreecommitdiff
path: root/starts/meaning-vm/level-2/funcs.hpp
blob: 2a92bfd728fcfef0fb7bddfdd253ed82f08bc079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "common.hpp"

#include <functional>
#include <initializer_list>

namespace intellect {
namespace level2 {

ref & context();
ref makehabit(ref name, std::initializer_list<ref> argnames, std::function<void(ref)> code);
ref dohabit(ref habit, std::initializer_list<ref> args);

}
}