On Mon, Apr 28, 2003 at 12:18:19PM +0900, Simon Strandgaard wrote: > On Mon, 28 Apr 2003 12:31:14 +0900, Rich wrote: > > > I don't know C - or C++... and I'd rather not learn. > > > Yes C/C++ is a bastard language, but unfortunatly unavoidable :-) C is a perfectly good assembly language, and moderately portable. In fact if you miss machine code that much, you can write register int a; #define CLRA (a=0) #define LDAA(x) (a=*(x)) #define STAA(x) (*(x)=a) #define HALT (exit(0)) /* etc */ But I agree that C++ is a bastard language :-) Regards, Brian.