Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions HelloWorld/hello-react.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hacktoberfest 2021</title>
</head>
<body>
<div id="root"></div>
<script src="https://unpkg.com/react/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom/umd/react-dom.development.js"></script>
<script>
ReactDOM.render(
"Hello, world!",
document.getElementById('root')
);
</script>
</body>
</html>
12 changes: 12 additions & 0 deletions HelloWorld/hello.bf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
>++++++++[<+++++++++>-]<.
>++++[<+++++++>-]<+.
+++++++..
+++.
>>>++++[<++++++++>-]<.
>>>+++++++++[<++++++++++>-]<---.
<<<<.
+++.
------.
--------.
>>+.
>++++++++++.
5 changes: 5 additions & 0 deletions HelloWorld/hello.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(ns clojure.examples.hello
(:gen-class))
(defn hello-world []
(println "Hello World"))
(hello-world)
5 changes: 5 additions & 0 deletions HelloWorld/hello.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include<iostream>
using namespace std;
int main(){
cout<<"Hello World!";
}
8 changes: 8 additions & 0 deletions HelloWorld/hello.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
using System;
namespace HelloWorld {
class Hello {
static void Main() {
Console.WriteLine("Hello World!");
}
}
}
3 changes: 3 additions & 0 deletions HelloWorld/hello.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
void main() {
print('Hello, World!');
}
Binary file added HelloWorld/hello.exe
Binary file not shown.
5 changes: 5 additions & 0 deletions HelloWorld/hello.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class helloworld{
public static void main(String args[]){
System.out.println("Hello World");
}
}
2 changes: 2 additions & 0 deletions HelloWorld/hello.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
const msg = 'Hello World'
console.log(msg)
5 changes: 5 additions & 0 deletions HelloWorld/hello.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
program helloworld;
begin
writeln('hello world');
readln
end.
2 changes: 2 additions & 0 deletions HelloWorld/hello.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?php
echo "Hello World";
4 changes: 4 additions & 0 deletions HelloWorld/hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env python

if __name__ == '__main__':
print("Hello, world")
1 change: 1 addition & 0 deletions HelloWorld/hello.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
puts "Hello World"
2 changes: 2 additions & 0 deletions HelloWorld/hello.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
echo "Hello World"
2 changes: 2 additions & 0 deletions HelloWorld/hello.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
let message: string = 'Hello, World!';
console.log(message);
7 changes: 7 additions & 0 deletions HelloWorld/hello.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Module Hello

Sub Main( )
System.Console.WriteLine("Hello World")
End Sub

End Module
5 changes: 5 additions & 0 deletions HelloWorld/hello.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<div>
Hello World
</div>
</template>