Submitted by Vladimir (not verified) on Thu, 23/02/2012 - 15:33.
I use win32 compiled cling.exe, it hangs up in the simplest cases:
int i=1; - OK
int i=1 - without ";" - hangs up
++i; - OK
++i - hangs up
#include "stdio.h" - OK
#include "math.h" - hangs up
#include "math_not_exist.h" - OK, informs about error
What going wrong in these cases ?
Thanks,
Vladimir
cling.exe hangs up ...