Implement 5.52 translate Scheme to C
This commit is contained in:
14
shared/scm2c/primitives.h
Normal file
14
shared/scm2c/primitives.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef PRIMITIVES_H
|
||||
#define PRIMITIVES_H
|
||||
|
||||
#include "datum.h"
|
||||
|
||||
datum* add(datum* args);
|
||||
datum* sub(datum* args);
|
||||
datum* mul(datum* args);
|
||||
datum* eq(datum* args);
|
||||
datum* lt(datum* args);
|
||||
datum* display(datum* args);
|
||||
datum* newline(datum* args);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user