C/C++
bob.asc
Associated article: Your Own Tiny Object-Oriented Language
Tags: C/C++ Tools
_YOUR OWN TINY OBJECT-ORIENTED LANGUAGE_
by David Betz
[LISTING ONE]
/* bobint.c - bytecode interpreter */
/*
Copyright (c) 1991, by David Michael Betz
All rights reserved
*/
#include <setjmp.h>
#include "bob.h"
#define iszero(x) ((x)->...


