Xref: utzoo comp.sources.wanted:5649 comp.lang.c++:2091
Path: utzoo!utgpu!watmath!clyde!att!osu-cis!tut.cis.ohio-state.edu!mailrus!cornell!batcomputer!itsgw!steinmetz!uunet!mcvax!adrianb
From: adrianb@cwi.nl (Adrian Baddeley)
Newsgroups: comp.sources.wanted,comp.lang.c++
Subject: Interpreted C++
Keywords: C++, g++, interpreters
Message-ID: <7735@boring.cwi.nl>
Date: 27 Nov 88 21:41:37 GMT
Organization: CWI, Amsterdam
Lines: 18

Is there such a thing as interpreted C++ ?

I want an interactive program that will execute
some large subset of C++. Example:

	prompt :-> int i = 0;
	(EXECUTES NOW, i created and initialised)
	prompt :-> for(i = 0; i < 10; i++) {
	(PARSER RECOGNISES UNFINISHED BLOCK)
	continue_prompt :->  printf("i = %d\n", i);
	continue_prompt :->  }
	(EXECUTES)
	i = 0
	i = 1
	...

If not, can anyone suggest a quick route, 
e.g. should I hack away at the gnu g++ source ?