# Hello World in the languages I know

Hi, this article is imported from my first [dev.to](https://dev.to/gouravkhunger/hello-world-in-all-the-languages-i-know-43df) post. I am going to write hello world in the languages I can.

# English 😂

```
Hello World
```

---

Okay jokes aside, I will do it in the *programming* languages I can.

# Bash
```bash
echo "Hello World!"
```

# C
```c
#include <stdio.h>
int main() {
  printf("%s", "Hello World!");
  return 0;
}
```

# C++
```cpp
#include <bits/stdc++.h>
using namespace std;

int main() {
  cout<<"Hello World!";
  return 0;
}
```

# HTML
```html
<h1>Hello World!</h1>
```

# Java

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

# JavaScript
```javascript
document.write('Hello, World!');
```

# PHP
```php
<?php
    echo "Hello World!";
?>
```

# Python
```python
print("Hello World!")
```

# QBASIC
```qbasic
PRINT "Hello, world!"​
```

So this was the basic Hello World program in the languages I knew(this does not include frameworks like Flutter, Android, etc). I am not a master in all these languages, but I can understand most of them. 

%%[ad]

Thanks for reading :)
