Skip to content

arfu786/hello_world

 
 

Repository files navigation

hello world

Hello, world!

Java

import java.util.Scanner;

class hello_world
{
public static void main(String[] args)
{
System.out.println("welcome 2017!");

}}

## PHP
```php
class HelloWorld{
  function __construct(){
    echo "Hello World";
  }
}
$Obj = new HelloWorld;

hello_world in C

#include <stdio.h> int main(){ printf("hello_world\nWelcome 2017!\n"); }

hello_world in c++

#include using namespace std;

int main(){ cout<< "hello world \n Welcome 2017!\n"; }

JavaScript

console.log("welcome 2017!");

## Python
```python
print("welcome 2017!")

C#

using System;
using System.Collections.Generic;
using System.Text;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("welcome 2017!");
        }
    }
public static void main(String[] args) 
  { 
    System.out.println("welcome 2017!");
  }
}
## PASCAL#
program HelloWorld;
begin
  WriteLn('Hello, World');
end.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 25.6%
  • Rust 20.7%
  • C# 16.4%
  • Python 12.7%
  • HTML 10.7%
  • C 9.9%
  • JavaScript 4.0%