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 .
- Host: GitHub
- URL: https://github.com/divinemonk/h3ll0_w0rld
- Owner: Divinemonk
- Created: 2021-04-12T10:25:30.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-12T12:27:09.000Z (about 5 years ago)
- Last Synced: 2026-01-03T12:23:46.241Z (6 months ago)
- Topics: bash, c, c-plus-plus, c-sharp, css, go, helloworld, html, java, javascript, perl, php, programming-language, python, r, ruby, rust, sql, swift
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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