"Hello World" is the first program one usually writes when learning a new programming language. It is used in many introductory tutorials for teaching a programming language. Such a program is typically one of the simplest programs possible in a computer language. I remember writing a code like this in C during my college days
Today, elsewhere in the web, I found a single page that contains how to write a "Hello World" program in all the available languages. If you want to learn or even just have a look, it is here.
Check it out and refresh some of your languages that you might have stopped learning now!
main() {
printf("hello, world");
}
Even before that, the first language that I learnt, BASIC.. Writing Hello World in BASIC goes likes this10 REM Hello World in BASIC 20 PRINT "Hello World!"
Today, elsewhere in the web, I found a single page that contains how to write a "Hello World" program in all the available languages. If you want to learn or even just have a look, it is here.
Check it out and refresh some of your languages that you might have stopped learning now!
No comments:
Post a Comment