blob: 85e1af8a9373ee330d69161907b711c0ebbb42b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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);
ref dohabit(ref habit, std::initializer_list<std::initializer_list<ref>> args = {});
}
}
|