Point of view
Sunday Dec 23, 2007
Last few days I having been sitting at home and brushing up the basics of Unix and Java. At this point of time I would like to share a few things (basically things that are coming to my mind):
Firstly about unix (terminal)...
The prompt is not the only thing that is different between Unix and DOS apart from well known fact that both (usually) have inverted colors (One is black on white and the other white on black).
Next about Java...
If I am given a choice between C++, php and Java...
Lets compare the syntax for sending a simple textual output to the standard I/O in all the three languages:
C++: cout<<"Hello World";
php: echo "Hello World";
Java: System.out.println("Hello World");
I will choose php cause its style of coding is really casual, yet stylish. At the same time I'll always envy those Java programmers cause even the print statement of Java exhibits sophistication.











Java can be a pain for most/many simple programmin...