An open API service indexing awesome lists of open source software.

https://github.com/divinemonk/h3ll0_w0rld

Here you will find how to write a 'Hello world' code in 10+ programming languages .
https://github.com/divinemonk/h3ll0_w0rld

bash c c-plus-plus c-sharp css go helloworld html java javascript perl php programming-language python r ruby rust sql swift

Last synced: 3 months ago
JSON representation

Here you will find how to write a 'Hello world' code in 10+ programming languages .

Awesome Lists containing this project

README

          

# h3LL0_w0rLd

## Hey , let's print "Hello World!" !!

### * [Python](https://en.wikipedia.org/wiki/Python_(programming_language))
```
print("Hello World!")
```
> helloworld.py

---

### * [Java](https://en.wikipedia.org/wiki/Java)
```
class HelloWorld
{
public static void main(String[] args)
{
System.out.println("Hello World!");
}
}
```
> helloworld.java

---

### * [JavaScript](https://en.wikipedia.org/wiki/JavaScript)
```
alert("Hello World!");
```
> helloworld.js

---

### * [C](https://en.wikipedia.org/wiki/C)
```
#include

int main()
{
printf("Hello World!");
return 0;
}
```
> helloworld.c

---

### * [C++](https://en.wikipedia.org/wiki/C++)
```
#include

int main()
{
std::cout << "Hello World!";
return 0;
}
```
> helloworld.c

---

### * [C#](https://en.wikipedia.org/wiki/C_Sharp_(programming_language))
```
using System;

namespace HelloWorldApp
{
class Geeks
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}
```
> helloworld.cs

---

### * [Bash](https://en.wikipedia.org/wiki/Bash_(Unix_shell))
```
#!/bin/bash

echo "Hello World!"
```
> helloworld.sh

---

### * [Batch File](https://en.wikipedia.org/wiki/Batch_file)
```
echo Hello World!
pause
```
> helloworld.bat

---

### * [HTML](https://en.wikipedia.org/wiki/HTML)
```


Hello World!


Hello World!


```
> helloworld.html

---

### * [CSS](https://en.wikipedia.org/wiki/CSS)
```

body:before{
content: "Hello Word!";
}

```
> helloworld.css

---

### * [PHP](https://en.wikipedia.org/wiki/PHP)
```

```
> helloworld.php

---

### * [Ruby](https://en.wikipedia.org/wiki/Ruby)
```
puts "Hello World!"
```
> helloworld.rb

---

### * [SQL](https://en.wikipedia.org/wiki/SQL)
```
BEGIN
dbms_output.put_line (‘Hello World!');
END;
/
```
> helloworld.sql

---

### * [Swift](https://en.wikipedia.org/wiki/Swift_(programming_language))
```
print("Hello, World!")
```
> helloworld.swift

---

### * [R](https://en.wikipedia.org/wiki/R_(programming_language))
```
print("Hello World!")
```
> helloworld.r

---

### * [GO](https://en.wikipedia.org/wiki/Go_(programming_language))
```
package main

import "fmt"

func main()
{
fmt.Println("hello world")
}
```
> helloworld.go

---

### * [Perl](https://en.wikipedia.org/wiki/Perl)
```
#!/usr/bin/perl

use strict;
use warnings;

print("Hello World\n");
```
> helloworld.pl