Giter Site home page Giter Site logo

sid-wc121 / hello-world Goto Github PK

View Code? Open in Web Editor NEW
12.0 1.0 1.0 11 KB

Hello World! in different programming languages

Brainfuck 16.94% C# 14.86% C 8.63% C++ 11.26% Dart 4.70% Go 8.52% Java 13.01% JavaScript 3.06% Julia 2.51% Lua 2.30% Ruby 2.19% Rust 4.92% Swift 2.30% Python 2.40% Perl 2.40%

hello-world's Introduction

Hello World!

Hello World! in different programming languages


Python

print('Hello World!') 

C

#include <stdio.h>
int main() {
    printf("Hello World!");
    return 0;
}

C++

#include <iostream>
using namespace std;
int main()
{
    cout << "Hello World!";
    return 0;
}

C#

using System.IO;
using System;

class Program
{
    static void Main()
    {
        Console.WriteLine("Hello World!");
    }
}

Java

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

JavaScript

console.log('Hello World!');

Go

package main

import "fmt"

func main() {
	fmt.Println("Hello World!")
}

Rust

fn main() {
    println!("Hello World!");
}

Dart

void main(){
    print("Hello World!");
}

Ruby

puts "Hello World!";

BrainF*ck

>+++++++++[<++++++++>-]<.>+++++++[<++++>-]<+.+++++++..+++.>>>++++++++[<++++>-]
<.>>>++++++++++[<+++++++++>-]<---.<<<<.+++.------.--------.>>+.>++++++++++.

Lua

print("Hello World!")

Julia

println("Hello World!")

Swift

print("Hello World!")

Perl

print "Hello World!";

hello-world's People

Contributors

sid-wc121 avatar nikhil-rajiv avatar

Stargazers

 avatar Jishnu B Thilak avatar  avatar Adithya avatar  avatar Abhilash Nandakumar avatar  avatar Naveen Krishnan R avatar  avatar M S Arkaj Kesavu avatar  avatar Arun R avatar

Watchers

 avatar

Forkers

nikhil-rajiv

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.