CLIM = Common Lisp Interface Manager, it’s like the REPL, ported to the GUI.
Is something like this similar possible in C++? If so, pointers?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here’s a REPL built atop GNU C++:
http://www.artificialworlds.net/wiki/IGCC/IGCC
There’s no reason why it shouldn’t work okay these days – it probably builds up a short program from successive statements, which on a modern machine will compile and run to display output in short order.
From the look of the examples, it could use a simple improvement: a line of input with no semicolon should be treated as an expression to be evaluated, so if you want to know the value of
a, just enteraand it would be equivalent to: