“Hello World” Programs for top 10 programming language

Before you start learning any programming language, you must know that how much important and popular the programming language is that you are going to learn.Because, learning itself is never a bad thing, we always motivate you to learn any new thing everyday. If your learning plan is in a managed and well planned way then you’ll never eat mud in the mid way.
Most of the programming language have same methodology and almost similar to each other. If you learn PHP you can easily understand C and vice versa and same with others, because they are totally related to each other.
"Hello World" Programs for top 10 programming language
One of the first programs that one usually writes when learning the first programming language is "Hello World". Today I’ll show you the top ten programming language you must learn in your life to get never ending career in Computer Programming. We’ll also show you the first program "Hello World" to begin with.




PHP



// Hello World in PHP
echo 'Hello World!';
?>



JavaScript
<html>
<body>
<script language="JavaScript" type="text/javascript">
// Hello World in JavaScript
document.write('Hello World');
</script>
</body>
</html>


C#


//Hello World in C#
class HelloWorld
{
static void Main()
{
System.Console.WriteLine("Hello, World!");
}
}




C
/* Hello World in C */
#include
main()
{
printf ("Hello World!\n");
}




Perl
# Hello world in perl
print "Hello World!\n";




Ruby
# Hello World in Ruby
puts "Hello World!"




Java
// Hello World in Java
class HelloWorld {
static public void main( String args[] ) {
System.out.println( "Hello World!" );
}
}




Python
# Hello World in Python
print "Hello World"




Visual Basic .NET (VB.NET)
'Hello World in Visual Basic .NET (VB.NET)
Imports System.Console
Class HelloWorld
Public Shared Sub Main()
WriteLine("Hello, world!")
End Sub
End Class

















Share This :

Related Post

0 comments:

Post a Comment

 
Support : Arnold Merch | Facebook Page | Strings and Harmony
Copyright © 2012. Your Stations - All Rights Reserved
Template Modify by Creating Website
Proudly powered by Blogger