This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Poly (simple Scheme interpreter) | |
written by kenichi sasagawa 2011/12 | |
*/ | |
#define CELLSIZE 1000000 | |
#define HEAPSIZE 799999 | |
#define CONTSTK 800000 | |
#define PALASTK 900000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* (simple Scheme interpreter) | |
written by kenichi sasagawa 2011/12start | |
*/ | |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <ctype.h> |