I stumbled the cool site for programming online right in Web Browser -
CodeIDE. It's possible to visit and start to run programs online in defferent programming languages. Just ran the program in Pascal with graphics and it works(!):
CODE
program Smile;
uses Graph;
begin
setcolor(9);
circle(100,100,50);
setcolor(12);
arc(90,105,10,270,5);
arc(100,105,10,180,5);
arc(110,105,-90,180,5);
arc(100,105,10,160,30);
setcolor(9);
arc(80,80,-200,10,12);
arc(115,80,-200,10,12);
line(105,85,125,85);
line(70,85,90,85);
setcolor(0);
circle(80,80,5);
circle(115,80,5);
end.
Registred users, as I understood by signing in, can save their programs in hos account, share them, post on own blog, etc.. It's possible to make an own community by making groups of users. By this way - you can help to your friend to write some tool.
As for me,
CodeIDE.com - the coolest place for newbies in programming.
This post has been edited by Mr.Oduvanchik: 24 Jul, 2007 - 02:46 AM