Skip to content

muhammadminhas/Hello-World-Codes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hello World Programs

Languages:

  • Java
  • Python
  • C#
  • Kotlin
  • PHP
  • Javascript
  • Dart
  • Powershell

1) Hello World in Java

public class HelloWorld{

     public static void main(String []args){
        System.out.println("Hello World");
     }
}

2) Hello World in Python

print("Hello world")

3) Hello World in C#

using System;
class HelloWorld {
  static void Main() {
    Console.WriteLine("Hello World");
  }
}

4) Hello World in Kotlin

fun main() {
    println("Hello, world")
}

5) Hello World in PHP

<!DOCTYPE html>
<html>
<body>

<?php
$txt = "PHP";
echo "Hello World";
?>

</body>
</html>

6) Hello World in Javascript

console.log('Hello World');

7) Hello World in Dart

void main() {
  print('Hello, World!');
}

8) Hello World in Powershell

Write-Host 'Hello, World!'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors