So, I want to learn how to script/program/w.e
I'm learning from my brother's old Comp Sci book, and the script is this.
Code:
#include <iostream.h>
int main()
(
cout << "Hello World!\n";
return 0;
)
This is the simple "Wow congrats on your first successful script"
Except I get this error:
----jGRASP wedge2: working directory is [C:\Documents and Settings\Robert Wine\My Documents\Visual Studio 2005\Projects] platform id is 2.
----jGRASP wedge2 error: command "g++" not found.
---- This command must be in the current working directory
---- or on the current PATH to use this function.
---- PATH is "C:\Program Files\Microsoft.NET;C:\mingw\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\Syste m32\Wbem;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\".
----jGRASP: operation complete.
I'm assuming it's because I haven't set up my libraries, which I have no idea how to use.
I have .NET Framerwork 2.0 installed(I think @_@)
Any input is much appreciated
-Alg