SoftIntegration Releases Ch C/C++ Interpreter 4.7 16
duncanbojangles writes "SoftIntegration, Inc. today announced the availability of Ch 4.7, Ch SDK 4.7 and Embedded Ch 4.7. Ch is an embeddable C/C++ interpreter for cross-platform scripting, 2D/3D plotting, numerical computing, shell programming and embedded scripting. Finally, no more compiling a 30 line program just to see if a bit of code will work."
Bad link in article? (Score:2)
Re:Bad link in article? (Score:1)
Re:Bad link in article? (Score:2)
I'm surprised there was so little feedback on your article. I thought it was interesting and I've enjoyed playing around with it.
See Also (Score:5, Informative)
See also the Free CINT [root.cern.ch] and TCC [bellard.free.fr].
Larry
Ch C/C++ Interpreter on slashdot (Score:1)
IMHO (Score:2)
Personally, I liked advertisement articles on slashdot when they were more subtle. Now they pretty much don't care.
The software looks nice, and there is a free edition, but I don't like to tie myself to software tools that may change at the whim of the company (see Activestate's Komodo as an example, or CDDB, etc)
-Adam
A floor wax *and* a dessert topping, too! (Score:4, Funny)
(Yeah, I know, there are a few good uses for a C++ interpreter. Not many, though.)
Mike
Re:A floor wax *and* a dessert topping, too! (Score:2)
I've often wished that I could have an interactive interpreter with C. Just so when I write a little bit of code, I don't have to compile it, and t
Re:A floor wax *and* a dessert topping, too! (Score:2)
When "make install" takes longer than "make", you've reached a critical point for *something*!
Re:A floor wax *and* a dessert topping, too! (Score:2)
Re:A floor wax *and* a dessert topping, too! (Score:1)
Re:A floor wax *and* a dessert topping, too! (Score:2)
Simple Makefile (Score:1)
-- Makefile --
# usage: make test [ARGS="args"]
PROG=hello
ARGS=world
all: $(PROG)
test: all # run the application
-- hello.c --
#include <stdio.h>
int main(int argc, char **argv)
{
int i;
for(i=(argc!=1);iargc;i++) {
printf("Hello, \"%s\".\n", argv[i]);
}
return 0;
}
Story Submitter (Score:2, Informative)
Also, about the link, I'm sorry. I tried to be a good
Standard C++ interpreters are useful (Score:1)
Compilation speed is not the only issue, because there's the whole compile-link-go cycle. A large program is a complicated thing to stitch together from lots of object files and libraries, so linking is often the big wait. And complex GUI apps take work to get them to the point where you're finally ready to tes