QUOTE(Nluk27 @ 3 Oct, 2008 - 02:14 PM)

I want to learn codes, whether for command prompts, or whatever.. I'd just like to learn some cool codes.
well, you could make some cool batch scripts. Its easy to learn and read. Basicly its just a text file that a command interpiter executes as if you were typing it in your self. This code is to show you how easy it is compared to C++ or other languages
CODE
@echo off
echo Hello world
pause
exit
@echo off simply turns of the current path text (e.g C:\Windows\System32);
echo Hello World displayes "Hello world" (Without quotes)
pause makes the cmd wait till a button is pressed from the keyboard
exit is self explanitory.
To try it out your self, copy and paste it onto note pad and save it as "Test.bat"
in C++ it would be
cpp
#include <iostream> //Basic input output commands
using namespace std; //type of namespace
int main(void) //C++ always begins in this function
{
cout << "Hello world!" << endl; //Displayes "Hello World" Without quotes
system("pause"); //Waits for a key to be pressed
return 0; //Your return value
}
for batch your dictionary is in your computer. just go into cmd and type help to get a basic list. and for help with a command just type your command with a ? behind it
Hope this helped