I am developing a cloud based compiler, that is Windows 8 (Metro app) based and and should compile Python code in Azure. For example in my app user can enter something like
count =0while(count <9):print'The count is:', count
count = count +1print"Good bye!"
And this code should be processed in Azure cloud (rather then processed in Computer) and give the result as
The count is:0The count is:1The count is:2The count is:3The count is:4The count is:5The count is:6The count is:7The count is:8Good bye!
is this possible.