Login Register






Hello World filter_list
Author
Message
Hello World #1
Hello World In C
Code:
#include <stdio.h> int main() { printf("Hello world\n"); return 0; }

Hello World In C++
Code:
#include <iostream> using namespace std; int main () { cout << "Hello World!"; return 0; }

Hello World In Go
Code:
package main import "fmt" func main() { fmt.Println("Hello, World") }

Hello World In Java
Code:
class HelloWorldApp { public static void main(String[] args) { System.out.println("Hello World!"); } }

Hello World In Perl
Code:
print "Hello World\n";

Hello World In Python
Code:
print "Hello, World!"

Hello World In Ruby
Code:
puts 'Hello world'
[Image: fow57.jpg]

Reply

RE: Hello World #2
Sry but i do not see any need of this thread. Nobody will learn anything of see how the you print "Hello World" in 7 differnet languages.

Reply

RE: Hello World #3
(08-27-2012, 04:44 PM)Anima Templi Wrote: Sry but i do not see any need of this thread. Nobody will learn anything of see how the you print "Hello World" in 7 differnet languages.

But they can choose which language to go with!
[Image: fow57.jpg]

Reply

RE: Hello World #4
No, you will not learn anything from a language by just make it print out "hello world". You will either not get a clear understanding on how the programming language is build up. So my point is, no one will get any closer on which language they should choose, because they will not get a clear idea of how the language is build up by seeing the different ways of printing "hello world".

Reply

RE: Hello World #5
(08-29-2012, 07:39 AM)Anima Templi Wrote: No, you will not learn anything from a language by just make it print out "hello world". You will either not get a clear understanding on how the programming language is build up. So my point is, no one will get any closer on which language they should choose, because they will not get a clear idea of how the language is build up by seeing the different ways of printing "hello world".

I agree.

If anything, it shows the simplicity of the language in a basic form, but that's about it.



Reply

RE: Hello World #6
hi im a new to these languages..if ii wanted to learn which do you recommend to learn 1st??

Reply

RE: Hello World #7
(08-30-2012, 03:41 AM)unknown_user Wrote: hi im a new to these languages..if ii wanted to learn which do you recommend to learn 1st??

C is probably the most useful, but Python is easy.



Reply

RE: Hello World #8
I would say you should at least learn the basics of python because it will make it 10 times easier to learn other languages. After that, you should decide which kind of application/program you cant to make. When you have a goal, it will be easier for us to decide/help you in the right direction.

Reply

RE: Hello World #9
thanks..i will go for python..then i will decide which kind of application/program i want to make.

Reply

RE: Hello World #10
Great, it will really benefit you later on.

Reply