diff --git a/HelloWorld/hello-react.html b/HelloWorld/hello-react.html
new file mode 100644
index 0000000..7c6642b
--- /dev/null
+++ b/HelloWorld/hello-react.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Hacktoberfest 2021
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/HelloWorld/hello.bf b/HelloWorld/hello.bf
new file mode 100644
index 0000000..759aa14
--- /dev/null
+++ b/HelloWorld/hello.bf
@@ -0,0 +1,12 @@
+>++++++++[<+++++++++>-]<.
+>++++[<+++++++>-]<+.
++++++++..
++++.
+>>>++++[<++++++++>-]<.
+>>>+++++++++[<++++++++++>-]<---.
+<<<<.
++++.
+------.
+--------.
+>>+.
+>++++++++++.
diff --git a/HelloWorld/hello.clj b/HelloWorld/hello.clj
new file mode 100644
index 0000000..aff90a2
--- /dev/null
+++ b/HelloWorld/hello.clj
@@ -0,0 +1,5 @@
+(ns clojure.examples.hello
+ (:gen-class))
+(defn hello-world []
+ (println "Hello World"))
+(hello-world)
\ No newline at end of file
diff --git a/HelloWorld/hello.cpp b/HelloWorld/hello.cpp
new file mode 100644
index 0000000..66cb2bd
--- /dev/null
+++ b/HelloWorld/hello.cpp
@@ -0,0 +1,5 @@
+#include
+using namespace std;
+int main(){
+ cout<<"Hello World!";
+}
\ No newline at end of file
diff --git a/HelloWorld/hello.cs b/HelloWorld/hello.cs
new file mode 100644
index 0000000..baa3c44
--- /dev/null
+++ b/HelloWorld/hello.cs
@@ -0,0 +1,8 @@
+using System;
+namespace HelloWorld {
+ class Hello {
+ static void Main() {
+ Console.WriteLine("Hello World!");
+ }
+ }
+}
\ No newline at end of file
diff --git a/HelloWorld/hello.dart b/HelloWorld/hello.dart
new file mode 100644
index 0000000..fdb072d
--- /dev/null
+++ b/HelloWorld/hello.dart
@@ -0,0 +1,3 @@
+void main() {
+ print('Hello, World!');
+}
\ No newline at end of file
diff --git a/HelloWorld/hello.exe b/HelloWorld/hello.exe
new file mode 100644
index 0000000..47814c7
Binary files /dev/null and b/HelloWorld/hello.exe differ
diff --git a/HelloWorld/hello.java b/HelloWorld/hello.java
new file mode 100644
index 0000000..93c0543
--- /dev/null
+++ b/HelloWorld/hello.java
@@ -0,0 +1,5 @@
+class helloworld{
+ public static void main(String args[]){
+ System.out.println("Hello World");
+ }
+}
\ No newline at end of file
diff --git a/HelloWorld/hello.js b/HelloWorld/hello.js
new file mode 100644
index 0000000..269a3e6
--- /dev/null
+++ b/HelloWorld/hello.js
@@ -0,0 +1,2 @@
+const msg = 'Hello World'
+console.log(msg)
\ No newline at end of file
diff --git a/HelloWorld/hello.pas b/HelloWorld/hello.pas
new file mode 100644
index 0000000..b108452
--- /dev/null
+++ b/HelloWorld/hello.pas
@@ -0,0 +1,5 @@
+program helloworld;
+begin
+ writeln('hello world');
+ readln
+end.
\ No newline at end of file
diff --git a/HelloWorld/hello.php b/HelloWorld/hello.php
new file mode 100644
index 0000000..1695f40
--- /dev/null
+++ b/HelloWorld/hello.php
@@ -0,0 +1,2 @@
+
+
+ Hello World
+
+
\ No newline at end of file