Open Source
bob.asc
Associated article: Bob: A Tiny Object-Oriented Language
Tags: Tools Open Source
_BOB: A 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)->...


