Login
7 branches 0 tags
Ben (Win10) Added [array/heap-sort] and assorted functions provied by aruseus from twitch 5849848 3 years ago 387 Commits
nujel / lib / type / val.h
#pragma once
#include "../nujel.h"
#include "../collection/list.h"
#include "../type-system.h"

lVal     *lValBool   (bool v);
lVal     *lValInt    (i64 v);
lVal     *lValFloat  (double v);
lVal     *lValVec    (const vec v);
lVal     *lValTree   (lTree *v);
lVal     *lValObject (lClosure *v);
lVal     *lValLambda (lClosure *v);
lVal     *lValComment();