Skip to content

ashil30/hello_world

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hello_world

Java

import java.util.Scanner;

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

# hello_world in C

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

# hello_world in c++

#include<iostream>
 using namespace std;
  
  int main(){
  cout<< "hello world \n Welcome 2017!\n";
 }

## JavaScript

```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!");
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 38.6%
  • Rust 31.2%
  • Python 15.2%
  • C 15.0%