Login
7 branches 0 tags
Benjamin Vincent Schulenburg Improved trees and #nil comparisons 2f18974 4 years ago 260 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  (float v);
lVal     *lValVec    (const vec v);
lVal     *lValTree   (lTree *v);
lVal     *lValObject (lClosure *v);
lVal     *lValLambda (lClosure *v);