April 20, 2024

20 Ways To Say “Hello World” In Programming

No doubt printing ‘Hello World’ is the most famous program. It is the first example in nearly every programming language for every programmer. Traditionally, it’s the first program developers uses to test systems. For programmers, seeing the two words on the screen means their code can compile, load, run and they can see the output.
In this article, Let’s talk about how to write HELLO WORLD program in 20 different programming languages. You’ll also know the difficulty and simplicity of these programming languages after looking at their syntax.

Hello World
Ways to printing “Hello World” in programming

1. C PROGRAMMING

#include
int main(void)
{
puts(“Hello, world!”);
}

2. C++ PROGRAMMING

#include
int main()
{
std::cout << “Hello, world!”;
return 0;
}

Read Also: – 81 Year Old Masako Wakamiya – An Octogenarian App Developer

3. C# PROGRAMMING

using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine(“Hello, world!”);
}
}

4. JAVA PROGRAMMING

import javax.swing.JFrame; //Importing class JFrame
import javax.swing.JLabel; //Importing class JLabel
public class HelloWorld {
public static void main(String[] args) {
JFrame frame = new JFrame(); //Creating frame
frame.setTitle(“Hi!”); //Setting title frame
frame.add(new JLabel(“Hello, world!”));//Adding text to frame
frame.pack(); //Setting size to smallest
frame.setLocationRelativeTo(null); //Centering frame
frame.setVisible(true); //Showing frame
}
}

5. JavaScript

document.write(‘Hello, world!’);

6. Python PROGRAMMING

print “Hello, world!”

7. Pascal Codes

program HelloWorld;
begin
WriteLn(‘Hello, world!’);
end.

8. Ruby

puts “Hello, world!”

9. Visual Basic .NET

Module Module1
Sub Main()
Console.WriteLine(“Hello, world!”)
End Sub
End Module

10. MatLab

disp (‘Hello, world!’)

11. Swift

println(“Hello, world!”)

Read Also: – How To Create Android Apps In Minutes Without Any Coding Knowledge

12. jQuery

$(“body”).append(“Hello world!”);

13. Bash

echo “Hello World”

14. Perl 5

print “Hello, world!”;

 15. Basic

PRINT “Hello, world!”

16. Objective-C

#import
#import
int main(void)
{
NSLog(@”Hello, world!”);
return 0;
}

17. XSLT

Hello World

18. CoffeeScript

console.log ‘Hello, world!’

19. Logo

print [Hello, world!] 

20. VBScript

MsgBox “Hello, World!”

Conclusion

Alright, those were little of the many programming languages and how to use them in writing and running the “Hello World” action. Let us know in the comments section of other programming languages and we will include it as quickly as possible.

3 thoughts on “How to say “Hello World” in different programming languages

Leave a Reply

Your email address will not be published. Required fields are marked *