Login
7 branches 0 tags
Ben (RPI 4) Added GH Action for building a wasm repl 5dae78d 4 years ago 171 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   (int v);
lVal     *lValFloat (float v);
lVal     *lValVec   (const vec v);
lVal     *lValTree  (lTree *v);
lVal     *lValObject(lClosure *v);
lVal     *lValCopy  (lVal *dst, const lVal *src);
lVal     *lValDup   (const lVal *v);