Close Menu
My SiteMy Site
  • Home
  • Reviews
  • Computers
  • How Tos
  • Travel & Lifestyle
  • Phone ROMs
  • Contact
    • Advertise
    • About Us
Facebook X (Twitter) Instagram
My SiteMy Site
  • Home
  • Reviews
  • Computers
  • How Tos
  • Travel & Lifestyle
  • Phone ROMs
  • Contact
    • Advertise
    • About Us
My SiteMy Site
Home»Computers»How to Program Hello World in 10 programming languages
Computers

How to Program Hello World in 10 programming languages

Oscar FrankBy Oscar Frank3 Mins Read
Share
Facebook Twitter LinkedIn WhatsApp Pinterest Email

It is quite interesting to learn one or more programming languages in order to beable to write your own scripts, softwares and more, but before you venture into learning any of the programming languages, you must somewhat consider how much important and popular the programming language is that you are about learning in order to have a wider market for your softwares if you would later go into full time software development.

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.

how to say hello word in 10 programming languages

How to say Hello World in 10 Programming Languages

This is the usual norm observed while learning any programming language. One of the first programs that one usually writes when learning their first programming language is “Hello World”. In this post, i’ll show you how to output that sumple text in the top ten programming languages. This is very useful if you wish to excel in your computer programming career. You sure won’t regret checking out this post, it really is great. Let me start out the tutorials, please read carefullyas this post is made easy to understand.

PHP


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

C#


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

JavaScript


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

Perl


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

C


/* Hello World in C */
#include <stdio.h>
main()
{
printf ("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"

VisualBasic.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

If you successfully performed the programming practice, you must have seen the Hello Word outputed for your in your programming window screen, and I hope you now see how this different programming languages are related to each other.

If this post was really helpful to you, you can share this post with friennds and also subscribe to our feeds with the form below.

Wow, you are now on your way to becoming one of the best programmers.

computers programming Simple Machines Forum

Related Posts

How to Use AirDrop for Android and Windows- Nearby Share

July 26, 2023

Apple issued an Urgent security Update and Has Since Revoked it

July 11, 2023

MacBook Air with M2 Chip Set to Launch this July

July 10, 2022
View 1 Comment

1 Comment

  1. Tomisin on March 23, 2016 8:08 pm

    Nice

    Reply
Leave A Reply Cancel Reply

Recent Posts
  • 6 Sports Apps You Must Have On Your Phone
  • Valencia Travel Guide: All You Need to Know About This Spanish Gem
  • TikTok Faces Unexpected Ban in Senegal, Sparks Global Curiosity
  • The Apple GPT & Apple’s Chatbot Mysterious Debut
  • Triller Takes on TikTok: Filing for Public Listing
Get Exclusive Tech Insights!
My Site
Facebook X (Twitter) Instagram YouTube
© 2025 Oscarmini Co. Designed by illBytes.

Type above and press Enter to search. Press Esc to cancel.