lake/test/test_primitive.c
2014-03-06 21:36:51 -08:00

22 lines
356 B
C

#include "laketest.h"
/**
* primitive.h
* Lake Scheme
*
* Copyright 2011 Sami Samhuri
* MIT License
*
*/
#ifndef _LAKE_PRIMITIVE_H
#define _LAKE_PRIMITIVE_H
#include "env.h"
#include "lake.h"
LakePrimitive *prim_make(char *name, int arity, lake_prim fn);
char *prim_repr(LakePrimitive *prim);
void bind_primitives(LakeCtx *ctx);
#endif