├── .github └── ISSUE_TEMPLATE │ └── feature_request.md ├── .gitignore ├── Ada └── helloworld.adb ├── Arduino └── Arduino.ino ├── Bash └── bash ├── Bosque └── helloWorld.bsq ├── Brainfuck └── HelloWorld.bf ├── C Programming └── C.c ├── C-Sharp └── HelloWorld.cs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COW - Esolang └── Hello World.cow ├── Cobol └── helloWorld.cbl ├── CoffeeScript └── main.coffee ├── Cpp Programming ├── Cpp.cpp └── OO.cpp ├── Crystal Programming └── hello.cr ├── Dart └── dart.dart ├── Elixir └── HelloWorld.ex ├── English └── English ├── Erlang └── hello.erl ├── F-Sharp └── main.fs ├── Fortran └── helloworld.f ├── Golang Programming └── Golang.go ├── HTML Programming └── html.html ├── Haskell └── main.hs ├── Java Programming └── Java.java ├── JavaScript Programming └── HelloWorld.js ├── Julia └── hello.jl ├── Kotlin └── HelloWorld.kt ├── LICENSE ├── LOGO └── logo ├── Lisp └── hellloworld.lisp ├── Lua └── hello_world.lua ├── MATLAB └── hello_world.m ├── NextJS └── helloWorld.js ├── Nim └── hello.nim ├── Objective-C └── HelloWorld ├── Octave └── helloworld.m ├── PHP Programming └── php.php ├── Pascal └── hello.pas ├── Perl Programming └── main.pl ├── Piet └── Piet.png ├── PowerShell └── helloworld.ps1 ├── Python Programming └── Python.py ├── R Programming └── Rprog.r ├── README.md ├── ReactJS └── helloworld.js ├── Ruby Programming └── Ruby.rb ├── Rust └── main.rs ├── SQL Plus └── HelloWorld.sql ├── Scala └── Hello_World.scala ├── Shell Scripting └── Shell.sh ├── Solidity └── solidity.sol ├── Swift └── HelloWorld.swift ├── TypeScript └── TypeScript.ts ├── VB.net └── Program.vb ├── Visual Basic └── Hello World.vb ├── Windows Command Line └── helloworld.bat ├── XamarinForms ├── .gitignore ├── XamarinForms.Android │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ └── XamarinForms.Android.csproj ├── XamarinForms.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── XamarinForms.iOS.csproj ├── XamarinForms.sln └── XamarinForms │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ └── XamarinForms.csproj ├── _config.yml ├── dlang └── helloWorld.d └── lolcode └── helloworld.lol /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | *.exe 3 | *.class 4 | 5 | # ignore vscode files 6 | .vscode/* 7 | !.vscode/settings.json 8 | !.vscode/tasks.json 9 | !.vscode/launch.json 10 | !.vscode/extensions.json 11 | *.code-workspace 12 | /.vs/slnx.sqlite 13 | /.vs/ProjectSettings.json 14 | /.vs/HelloWorld/v16/Browse.VC.opendb 15 | /.vs/HelloWorld/v16/Browse.VC.db 16 | /.vs/HelloWorld/v16/.suo 17 | /.vs/HelloWorld/v16 18 | /.vs 19 | -------------------------------------------------------------------------------- /Ada/helloworld.adb: -------------------------------------------------------------------------------- 1 | with Ada.Text_IO; 2 | 3 | procedure Hello_World is 4 | begin 5 | Ada.Text_IO.Put_Line ("Hello World"); 6 | end Hello_World; -------------------------------------------------------------------------------- /Arduino/Arduino.ino: -------------------------------------------------------------------------------- 1 | void setup() { 2 | Serial.begin(9600); 3 | //Serial.println("Hello world"); 4 | } 5 | 6 | void loop() { 7 | Serial.println("Hello world"); 8 | } 9 | -------------------------------------------------------------------------------- /Bash/bash: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "Hello World" 3 | -------------------------------------------------------------------------------- /Bosque/helloWorld.bsq: -------------------------------------------------------------------------------- 1 | namespace NSMain; 2 | 3 | entrypoint function main(): String { 4 | return "Hello World"; 5 | } 6 | -------------------------------------------------------------------------------- /Brainfuck/HelloWorld.bf: -------------------------------------------------------------------------------- 1 | ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>. 2 | -------------------------------------------------------------------------------- /C Programming/C.c: -------------------------------------------------------------------------------- 1 | /*stdio.h is a library that operates input output functions of the program */ 2 | #include 3 | /*The program is written in the main function,this main does not return a value*/ 4 | void main() 5 | { 6 | // Using printf to send message to console out 7 | printf("Hello World!"); 8 | } 9 | /*The program is written in the main function,this main does not return a value*/ 10 | int main() 11 | { 12 | // Using printf to send message to console out 13 | printf("Hello World!"); 14 | return 0; 15 | } 16 | -------------------------------------------------------------------------------- /C-Sharp/HelloWorld.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Nishkarsh 3 | { 4 | class HelloWorld 5 | { 6 | static void Main() 7 | { 8 | /* No need to specify cmd line argument for Main() */ 9 | Console.WriteLine("Hello World!"); 10 | Console.ReadKey(); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at 500060720@stu.upes.ac.in. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Collaborate: 2 | 3 | 1. Fork the repository to your own GitHub account. 4 | 5 | 2. Clone the repository to your local machine 6 | ``` 7 | $ git clone "https://www.github.com/{Username}/HelloWorld.git" 8 | ``` 9 | where username is your GitHub account username. 10 | 11 | 3. Create a branch where you can do your local work. 12 | Never work on **master** branch as we do not allow master commits except by admins. 13 | ``` 14 | $ git branch {branchname} 15 | $ git checkout branchname 16 | ``` 17 | 18 | 4. Do your work and stage your changes. 19 | ``` 20 | $ git add 21 | ``` 22 | 23 | 5. Commit you changes with a commit message containing your name, file(s) worked upon, changes added. 24 | ``` 25 | $ git commit -m "Name| files| Changes" 26 | ``` 27 | 28 | 6. Push changes to your forked repository 29 | ``` 30 | $ git push -u origin branchname 31 | ``` 32 | 7. Create a pull request to the upstream repository. 33 | 34 | # Synchronize forked repository with Upstream repository 35 | 36 | 1. Create upstream as our repository 37 | ``` 38 | $ git remote add upstream "https://www.github.com/NishkarshRaj/HelloWorld" 39 | ``` 40 | 41 | 2. Fetch upstream changes in local machine 42 | ``` 43 | $ git fetch upstream 44 | ``` 45 | 46 | 3. Switch to master branch 47 | ``` 48 | $ git checkout master 49 | ``` 50 | 51 | 4. Merge changes in local machine 52 | ``` 53 | $ git merge upstream/master 54 | ``` 55 | 56 | 5. Push changes to your forked GitHub repository 57 | ``` 58 | $ git push -f origin master 59 | ``` 60 | -------------------------------------------------------------------------------- /COW - Esolang/Hello World.cow: -------------------------------------------------------------------------------- 1 | MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MoO MoO MoO MoO MoO MoO MoO Moo Moo MoO MoO MoO Moo OOO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo Moo MOo MOo MOo MOo MOo MOo MOo MOo Moo MoO MoO MoO Moo MOo MOo MOo MOo MOo MOo Moo MOo MOo MOo MOo MOo MOo MOo MOo Moo OOO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo -------------------------------------------------------------------------------- /Cobol/helloWorld.cbl: -------------------------------------------------------------------------------- 1 | IDENTIFICATION DIVISION. 2 | PROGRAM-ID. HELLO. 3 | 4 | PROCEDURE DIVISION. 5 | DISPLAY 'Hello World'. 6 | STOP RUN. -------------------------------------------------------------------------------- /CoffeeScript/main.coffee: -------------------------------------------------------------------------------- 1 | console.log "Hello World!!!" 2 | -------------------------------------------------------------------------------- /Cpp Programming/Cpp.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main() { 4 | int i, n; 5 | cin >> n; 6 | for (i=0; i 2 | using namespace std; 3 | //Object Oriented Hello World Code in C++ 4 | class Hello 5 | { 6 | public: 7 | void show() 8 | { 9 | cout<<"Hello World"; 10 | } 11 | }; 12 | //Main Code 13 | int main() 14 | { 15 | Hello *h1 = new Hello; 16 | h1->show(); 17 | } 18 | -------------------------------------------------------------------------------- /Crystal Programming/hello.cr: -------------------------------------------------------------------------------- 1 | puts "Hello World" -------------------------------------------------------------------------------- /Dart/dart.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Hello, World!'); 3 | } -------------------------------------------------------------------------------- /Elixir/HelloWorld.ex: -------------------------------------------------------------------------------- 1 | # Hello World 2 | defmodule ModuleName do 3 | def hello do 4 | IO.puts "Hello World" 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /English/English: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /Erlang/hello.erl: -------------------------------------------------------------------------------- 1 | -module(hello). 2 | -export([hello_world/0]). 3 | 4 | hello_world() -> io:fwrite("hello, world\n"). -------------------------------------------------------------------------------- /F-Sharp/main.fs: -------------------------------------------------------------------------------- 1 | Printf "Hello World!!!" 2 | -------------------------------------------------------------------------------- /Fortran/helloworld.f: -------------------------------------------------------------------------------- 1 | program helloworld 2 | print *,"Hello World!" 3 | end program helloworld 4 | -------------------------------------------------------------------------------- /Golang Programming/Golang.go: -------------------------------------------------------------------------------- 1 | package main 2 | import "fmt" 3 | func main() { 4 | fmt.Printf("Hello World Golang language") 5 | } -------------------------------------------------------------------------------- /HTML Programming/html.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World 4 | 5 | 6 | 7 |

Hello World

8 | 9 | -------------------------------------------------------------------------------- /Haskell/main.hs: -------------------------------------------------------------------------------- 1 | main = putStrLn "Hello World!!!" 2 | -------------------------------------------------------------------------------- /Java Programming/Java.java: -------------------------------------------------------------------------------- 1 | import java.util.*; 2 | public class Java 3 | { 4 | public static void main(String args[]) 5 | { 6 | System.out.println("Hello World"); 7 | } 8 | } -------------------------------------------------------------------------------- /JavaScript Programming/HelloWorld.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World!"); 2 | -------------------------------------------------------------------------------- /Julia/hello.jl: -------------------------------------------------------------------------------- 1 | println("Hello World!") 2 | -------------------------------------------------------------------------------- /Kotlin/HelloWorld.kt: -------------------------------------------------------------------------------- 1 | fun main(args: Array){ 2 | println("Hello World!") 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Nishkarsh Raj 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /LOGO/logo: -------------------------------------------------------------------------------- 1 | print [Hello World!] 2 | -------------------------------------------------------------------------------- /Lisp/hellloworld.lisp: -------------------------------------------------------------------------------- 1 | (format t "Hello, World!") -------------------------------------------------------------------------------- /Lua/hello_world.lua: -------------------------------------------------------------------------------- 1 | print("Hello World!") 2 | -------------------------------------------------------------------------------- /MATLAB/hello_world.m: -------------------------------------------------------------------------------- 1 | disp('Hello, world!') 2 | -------------------------------------------------------------------------------- /NextJS/helloWorld.js: -------------------------------------------------------------------------------- 1 | import Head from 'next/head' 2 | 3 | export default function Home() { 4 | return ( 5 |
6 | 7 | NextJS 8 | 9 | 10 |
11 |

12 | Hello World! 13 |

14 |
15 | 16 | 23 | 24 | 38 |
39 | ) 40 | } 41 | -------------------------------------------------------------------------------- /Nim/hello.nim: -------------------------------------------------------------------------------- 1 | echo "Hello World!" 2 | -------------------------------------------------------------------------------- /Objective-C/HelloWorld: -------------------------------------------------------------------------------- 1 | #import 2 | int main (int argc, const char * argv[]) 3 | { 4 | printf("Hello World"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /Octave/helloworld.m: -------------------------------------------------------------------------------- 1 | disp("Hello World!"); 2 | -------------------------------------------------------------------------------- /PHP Programming/php.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Pascal/hello.pas: -------------------------------------------------------------------------------- 1 | program HelloWorld; 2 | 3 | begin 4 | writeln('Hello, world!'); 5 | end. 6 | -------------------------------------------------------------------------------- /Perl Programming/main.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | # Linux and Git bash compatible code 3 | print "Hello World!!!"; 4 | -------------------------------------------------------------------------------- /Piet/Piet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/Piet/Piet.png -------------------------------------------------------------------------------- /PowerShell/helloworld.ps1: -------------------------------------------------------------------------------- 1 | Write-Host 'Hello, World!' -------------------------------------------------------------------------------- /Python Programming/Python.py: -------------------------------------------------------------------------------- 1 | print("Hello World!") 2 | -------------------------------------------------------------------------------- /R Programming/Rprog.r: -------------------------------------------------------------------------------- 1 | str<-"Hello World!" 2 | print(str) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hello World :smile: 2 | 3 | Hello World, this repository is made for fun. It aims to collaborate with various developers specialized in different programming languages to contribute Hello World code in their specialized language in this repository. 4 | 5 | # Rules for collaboration 6 | 7 | 1. Create folder of programming language you are coding on. 8 | 2. Update Readme.md with relative link to your code file. 9 | 3. Never work on the master branch. 10 | 11 | # Languages 12 | 13 | [1. C](C%20Programming) 14 | 15 | [2. C++](Cpp%20Programming) 16 | 17 | [3. Java](Java%20Programming) 18 | 19 | [4. Scala](Scala) 20 | 21 | [5. Python](Python%20Programming) 22 | 23 | [6. Shell Scripting](Shell%20Scripting) 24 | 25 | [7. HTML](HTML%20Programming) 26 | 27 | [8. Ruby](Ruby%20Programming) 28 | 29 | [9. R](R%20Programming) 30 | 31 | [10. TypeScript](TypeScript) 32 | 33 | [11. Golang](Golang%20Programming) 34 | 35 | [12. Oracle SQL Plus](SQL%20Plus) 36 | 37 | [13. PHP Programming](PHP%20Programming) 38 | 39 | [14. C-Sharp Programming](C-Sharp/) 40 | 41 | [15. Apple Swift programming](Swift/) 42 | 43 | [16. Rust Programming](Rust) 44 | 45 | [17. Kotlin Programming](Kotlin/) 46 | 47 | [18. Haskell Programming](Haskell/) 48 | 49 | [19. F# Programming](F-Sharp/) 50 | 51 | [20. CoffeeScript Programming](CoffeeScript/) 52 | 53 | [21. Perl Programming](Perl%20Programming) 54 | 55 | [22. JavaScript Programming](JavaScript%20Programming) 56 | 57 | [23. Brainfuck](Brainfuck/) 58 | 59 | [24. Dart](Dart/) 60 | 61 | [25. Crystal Programming](Crystal%20Programming) 62 | 63 | [26. Arduino](Arduino/) 64 | 65 | [27. Elixir](Elixir/) 66 | 67 | [28. VB.net](VB.net/) 68 | 69 | [29. Erlang](Erlang/) 70 | 71 | [30. Cobol](Cobol/) 72 | 73 | [31. ReactJS](ReactJS/) 74 | 75 | [32. Pascal](Pascal/) 76 | 77 | [33. Objective-C](Objective-C/) 78 | 79 | [34. Julia](Julia/) 80 | 81 | [35. Bash](Bash/) 82 | 83 | [36. Lolcode](lolcode/) 84 | 85 | [37. Powershell](PowerShell/) 86 | 87 | [38. Bosque](Bosque/) 88 | 89 | [39. Cow Esolang](COW%20-%20Esolang) 90 | 91 | [40. Visual Basic](Visual%20Basic) 92 | 93 | [41. Xamarin.Forms](XamarinForms) 94 | 95 | [42. Windows Command line](Windows%20Command%20Line) 96 | 97 | [43. Solidity](Solidity) 98 | 99 | [44. Lua](Lua/) 100 | 101 | [45. MATLAB](MATLAB/) 102 | 103 | [46. Octave](Octave) 104 | 105 | [47. NextJS](NextJS) 106 | 107 | [48. dlang](dlang) 108 | 109 | # Community Contributions 110 | 111 | [How to Contribute](CONTRIBUTING.md) 112 | 113 | [Code of Conduct](CODE_OF_CONDUCT.md) 114 | 115 | # License 116 | 117 | [MIT License](LICENSE) 118 | -------------------------------------------------------------------------------- /ReactJS/helloworld.js: -------------------------------------------------------------------------------- 1 | ReactDOM.render( 2 |

Hello, world!

, 3 | document.getElementById('root') 4 | ); 5 | -------------------------------------------------------------------------------- /Ruby Programming/Ruby.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby -w 2 | puts "Hello World!!"; -------------------------------------------------------------------------------- /Rust/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello World!!!"); 3 | } 4 | -------------------------------------------------------------------------------- /SQL Plus/HelloWorld.sql: -------------------------------------------------------------------------------- 1 | create table noicecurse 2 | ( 3 | str varchar(20) 4 | ); 5 | insert into noicecurse values ('Hello World'); 6 | select * from noicecurse; 7 | -------------------------------------------------------------------------------- /Scala/Hello_World.scala: -------------------------------------------------------------------------------- 1 | object HelloWorld { 2 | def main(args: Array[String]): Unit = { 3 | println("Hello, world!") 4 | } 5 | } -------------------------------------------------------------------------------- /Shell Scripting/Shell.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Hello World"; 3 | -------------------------------------------------------------------------------- /Solidity/solidity.sol: -------------------------------------------------------------------------------- 1 | pragma solidity >=0.6.0 <0.8.0; 2 | 3 | contract HelloWorld { 4 | function helloWorld() external pure returns (string memory) { 5 | return "Hello, World!"; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Swift/HelloWorld.swift: -------------------------------------------------------------------------------- 1 | var myString = "Hello, World!" 2 | 3 | print(myString) 4 | -------------------------------------------------------------------------------- /TypeScript/TypeScript.ts: -------------------------------------------------------------------------------- 1 | var message = "Hello World!!!"; 2 | console.log(message); -------------------------------------------------------------------------------- /VB.net/Program.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | 3 | Public Module Program 4 | Public Sub Main() 5 | Console.WriteLine("Hello World") 6 | End Sub 7 | End Module -------------------------------------------------------------------------------- /Visual Basic/Hello World.vb: -------------------------------------------------------------------------------- 1 | Module Module1 2 | Sub Main() 3 | Console.Writeline("Hello World") 4 | End Sub 5 | End Module -------------------------------------------------------------------------------- /Windows Command Line/helloworld.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | echo Hello, World! 3 | pause -------------------------------------------------------------------------------- /XamarinForms/.gitignore: -------------------------------------------------------------------------------- 1 | # Autosave files 2 | *~ 3 | 4 | # build 5 | [Oo]bj/ 6 | [Bb]in/ 7 | packages/ 8 | TestResults/ 9 | 10 | # globs 11 | Makefile.in 12 | *.DS_Store 13 | *.sln.cache 14 | *.suo 15 | *.cache 16 | *.pidb 17 | *.userprefs 18 | *.usertasks 19 | config.log 20 | config.make 21 | config.status 22 | aclocal.m4 23 | install-sh 24 | autom4te.cache/ 25 | *.user 26 | *.tar.gz 27 | tarballs/ 28 | test-results/ 29 | Thumbs.db 30 | 31 | # Mac bundle stuff 32 | *.dmg 33 | *.app 34 | 35 | # resharper 36 | *_Resharper.* 37 | *.Resharper 38 | 39 | # dotCover 40 | *.dotCover 41 | TestResult.xml 42 | 43 | # CAKE 44 | tools/* 45 | !tools/packages.config 46 | 47 | # MFractor 48 | .droidres/ 49 | .mfractor/ 50 | 51 | # fastlane specific 52 | fastlane/report.xml 53 | 54 | # deliver temporary files 55 | fastlane/Preview.html 56 | 57 | # snapshot generated screenshots 58 | fastlane/screenshots 59 | 60 | # scan temporary files 61 | fastlane/test_output 62 | 63 | .vs/ 64 | Apks/ 65 | **/*/Properties/AndroidManifest-*.xml 66 | 67 | ### Rider ### 68 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 69 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 70 | 71 | # User-specific stuff 72 | .idea/**/workspace.xml 73 | .idea/**/tasks.xml 74 | .idea/**/usage.statistics.xml 75 | .idea/**/dictionaries 76 | .idea/**/shelf 77 | 78 | # Generated files 79 | .idea/**/contentModel.xml 80 | 81 | # Sensitive or high-churn files 82 | .idea/**/dataSources/ 83 | .idea/**/dataSources.ids 84 | .idea/**/dataSources.local.xml 85 | .idea/**/sqlDataSources.xml 86 | .idea/**/dynamic.xml 87 | .idea/**/uiDesigner.xml 88 | .idea/**/dbnavigator.xml 89 | 90 | # Gradle 91 | .idea/**/gradle.xml 92 | .idea/**/libraries 93 | 94 | # Gradle and Maven with auto-import 95 | # When using Gradle or Maven with auto-import, you should exclude module files, 96 | # since they will be recreated, and may cause churn. Uncomment if using 97 | # auto-import. 98 | .idea/modules.xml 99 | .idea/*.iml 100 | .idea/modules 101 | *.iml 102 | *.ipr 103 | 104 | # CMake 105 | cmake-build-*/ 106 | 107 | # Mongo Explorer plugin 108 | .idea/**/mongoSettings.xml 109 | 110 | # File-based project format 111 | *.iws 112 | 113 | # IntelliJ 114 | out/ 115 | 116 | # mpeltonen/sbt-idea plugin 117 | .idea_modules/ 118 | 119 | # JIRA plugin 120 | atlassian-ide-plugin.xml 121 | 122 | # Cursive Clojure plugin 123 | .idea/replstate.xml 124 | 125 | # Crashlytics plugin (for Android Studio and IntelliJ) 126 | com_crashlytics_export_strings.xml 127 | crashlytics.properties 128 | crashlytics-build.properties 129 | fabric.properties 130 | 131 | # Editor-based Rest Client 132 | .idea/httpRequests 133 | 134 | # Android studio 3.1+ serialized cache file 135 | .idea/caches/build_file_checksums.ser 136 | 137 | coverage-results/ 138 | 139 | # End of https://www.gitignore.io/api/rider 140 | 141 | node_modules/ 142 | !fontello/config.json 143 | fontello/ 144 | fontello-*/ 145 | 146 | # visual studio code 147 | .vscode/* 148 | !.vscode/settings.json 149 | !.vscode/tasks.json 150 | !.vscode/launch.json 151 | !.vscode/extensions.json 152 | 153 | # HotReload 154 | !tools/Xamarin.Forms.HotReload.Observer.exe 155 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using Android.App; 4 | using Android.Content.PM; 5 | using Android.Runtime; 6 | using Android.Views; 7 | using Android.Widget; 8 | using Android.OS; 9 | 10 | namespace XamarinForms.Droid 11 | { 12 | [Activity(Label = "XamarinForms", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] 13 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity 14 | { 15 | protected override void OnCreate(Bundle savedInstanceState) 16 | { 17 | TabLayoutResource = Resource.Layout.Tabbar; 18 | ToolbarResource = Resource.Layout.Toolbar; 19 | 20 | base.OnCreate(savedInstanceState); 21 | 22 | Xamarin.Essentials.Platform.Init(this, savedInstanceState); 23 | global::Xamarin.Forms.Forms.Init(this, savedInstanceState); 24 | LoadApplication(new App()); 25 | } 26 | public override void OnRequestPermissionsResult(int requestCode, string[] permissions, [GeneratedEnum] Android.Content.PM.Permission[] grantResults) 27 | { 28 | Xamarin.Essentials.Platform.OnRequestPermissionsResult(requestCode, permissions, grantResults); 29 | 30 | base.OnRequestPermissionsResult(requestCode, permissions, grantResults); 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using Android.App; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("XamarinForms.Android")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("XamarinForms.Android")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: ComVisible(false)] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | 32 | // Add some common permissions, these can be removed if not needed 33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)] 34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] 35 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3F51B5 5 | #303F9F 6 | #FF4081 7 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 24 | 27 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.Android/XamarinForms.Android.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {997578DD-E6AD-4C37-8E34-FA67E83B668D} 7 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | {c9e5eea5-ca05-42a1-839b-61506e0a37df} 9 | Library 10 | XamarinForms.Droid 11 | XamarinForms.Android 12 | True 13 | Resources\Resource.designer.cs 14 | Resource 15 | Properties\AndroidManifest.xml 16 | Resources 17 | Assets 18 | v9.0 19 | true 20 | true 21 | Xamarin.Android.Net.AndroidClientHandler 22 | 23 | 24 | 25 | 26 | true 27 | portable 28 | false 29 | bin\Debug 30 | DEBUG; 31 | prompt 32 | 4 33 | None 34 | 35 | 36 | true 37 | portable 38 | true 39 | bin\Release 40 | prompt 41 | 4 42 | true 43 | false 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | {CCAA8FC9-4632-40B1-983D-FA57B868312D} 103 | XamarinForms 104 | 105 | 106 | 107 | 108 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace XamarinForms.iOS 9 | { 10 | // The UIApplicationDelegate for the application. This class is responsible for launching the 11 | // User Interface of the application, as well as listening (and optionally responding) to 12 | // application events from iOS. 13 | [Register("AppDelegate")] 14 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate 15 | { 16 | // 17 | // This method is invoked when the application has loaded and is ready to run. In this 18 | // method you should instantiate the window, load the UI into it and then make the window 19 | // visible. 20 | // 21 | // You have 17 seconds to return from this method, or iOS will terminate your application. 22 | // 23 | public override bool FinishedLaunching(UIApplication app, NSDictionary options) 24 | { 25 | global::Xamarin.Forms.Forms.Init(); 26 | LoadApplication(new App()); 27 | 28 | return base.FinishedLaunching(app, options); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "scale": "2x", 5 | "size": "20x20", 6 | "idiom": "iphone", 7 | "filename": "Icon40.png" 8 | }, 9 | { 10 | "scale": "3x", 11 | "size": "20x20", 12 | "idiom": "iphone", 13 | "filename": "Icon60.png" 14 | }, 15 | { 16 | "scale": "2x", 17 | "size": "29x29", 18 | "idiom": "iphone", 19 | "filename": "Icon58.png" 20 | }, 21 | { 22 | "scale": "3x", 23 | "size": "29x29", 24 | "idiom": "iphone", 25 | "filename": "Icon87.png" 26 | }, 27 | { 28 | "scale": "2x", 29 | "size": "40x40", 30 | "idiom": "iphone", 31 | "filename": "Icon80.png" 32 | }, 33 | { 34 | "scale": "3x", 35 | "size": "40x40", 36 | "idiom": "iphone", 37 | "filename": "Icon120.png" 38 | }, 39 | { 40 | "scale": "2x", 41 | "size": "60x60", 42 | "idiom": "iphone", 43 | "filename": "Icon120.png" 44 | }, 45 | { 46 | "scale": "3x", 47 | "size": "60x60", 48 | "idiom": "iphone", 49 | "filename": "Icon180.png" 50 | }, 51 | { 52 | "scale": "1x", 53 | "size": "20x20", 54 | "idiom": "ipad", 55 | "filename": "Icon20.png" 56 | }, 57 | { 58 | "scale": "2x", 59 | "size": "20x20", 60 | "idiom": "ipad", 61 | "filename": "Icon40.png" 62 | }, 63 | { 64 | "scale": "1x", 65 | "size": "29x29", 66 | "idiom": "ipad", 67 | "filename": "Icon29.png" 68 | }, 69 | { 70 | "scale": "2x", 71 | "size": "29x29", 72 | "idiom": "ipad", 73 | "filename": "Icon58.png" 74 | }, 75 | { 76 | "scale": "1x", 77 | "size": "40x40", 78 | "idiom": "ipad", 79 | "filename": "Icon40.png" 80 | }, 81 | { 82 | "scale": "2x", 83 | "size": "40x40", 84 | "idiom": "ipad", 85 | "filename": "Icon80.png" 86 | }, 87 | { 88 | "scale": "1x", 89 | "size": "76x76", 90 | "idiom": "ipad", 91 | "filename": "Icon76.png" 92 | }, 93 | { 94 | "scale": "2x", 95 | "size": "76x76", 96 | "idiom": "ipad", 97 | "filename": "Icon152.png" 98 | }, 99 | { 100 | "scale": "2x", 101 | "size": "83.5x83.5", 102 | "idiom": "ipad", 103 | "filename": "Icon167.png" 104 | }, 105 | { 106 | "scale": "1x", 107 | "size": "1024x1024", 108 | "idiom": "ios-marketing", 109 | "filename": "Icon1024.png" 110 | } 111 | ], 112 | "properties": {}, 113 | "info": { 114 | "version": 1, 115 | "author": "xcode" 116 | } 117 | } -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UIDeviceFamily 6 | 7 | 1 8 | 2 9 | 10 | UISupportedInterfaceOrientations 11 | 12 | UIInterfaceOrientationPortrait 13 | UIInterfaceOrientationLandscapeLeft 14 | UIInterfaceOrientationLandscapeRight 15 | 16 | UISupportedInterfaceOrientations~ipad 17 | 18 | UIInterfaceOrientationPortrait 19 | UIInterfaceOrientationPortraitUpsideDown 20 | UIInterfaceOrientationLandscapeLeft 21 | UIInterfaceOrientationLandscapeRight 22 | 23 | MinimumOSVersion 24 | 8.0 25 | CFBundleDisplayName 26 | XamarinForms 27 | CFBundleIdentifier 28 | Xamarin-Forms.Xamarin-Forms 29 | CFBundleVersion 30 | 1.0 31 | UILaunchStoryboardName 32 | LaunchScreen 33 | CFBundleName 34 | XamarinForms 35 | XSAppIconAssets 36 | Assets.xcassets/AppIcon.appiconset 37 | 38 | 39 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace XamarinForms.iOS 9 | { 10 | public class Application 11 | { 12 | // This is the main entry point of the application. 13 | static void Main(string[] args) 14 | { 15 | // if you want to use a different Application Delegate class from "AppDelegate" 16 | // you can specify it here. 17 | UIApplication.Main(args, null, "AppDelegate"); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("XamarinForms.iOS")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("XamarinForms.iOS")] 13 | [assembly: AssemblyCopyright("Copyright © 2014")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("72bdc44f-c588-44f3-b6df-9aace7daafdd")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Resources/Default.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishkarshRaj/HelloWorld/e5d1471419582eaaf396133f477614da0360ea7a/XamarinForms/XamarinForms.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.iOS/XamarinForms.iOS.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | iPhoneSimulator 6 | 8.0.30703 7 | 2.0 8 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE} 9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 10 | {6143fdea-f3c2-4a09-aafa-6e230626515e} 11 | Exe 12 | XamarinForms.iOS 13 | Resources 14 | XamarinForms.iOS 15 | true 16 | NSUrlSessionHandler 17 | 18 | 19 | true 20 | full 21 | false 22 | bin\iPhoneSimulator\Debug 23 | DEBUG 24 | prompt 25 | 4 26 | x86_64 27 | None 28 | true 29 | 30 | 31 | none 32 | true 33 | bin\iPhoneSimulator\Release 34 | prompt 35 | 4 36 | None 37 | x86_64 38 | 39 | 40 | true 41 | full 42 | false 43 | bin\iPhone\Debug 44 | DEBUG 45 | prompt 46 | 4 47 | ARM64 48 | iPhone Developer 49 | true 50 | Entitlements.plist 51 | 52 | 53 | none 54 | true 55 | bin\iPhone\Release 56 | prompt 57 | 4 58 | ARM64 59 | iPhone Developer 60 | Entitlements.plist 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | false 73 | 74 | 75 | false 76 | 77 | 78 | false 79 | 80 | 81 | false 82 | 83 | 84 | false 85 | 86 | 87 | false 88 | 89 | 90 | false 91 | 92 | 93 | false 94 | 95 | 96 | false 97 | 98 | 99 | false 100 | 101 | 102 | false 103 | 104 | 105 | false 106 | 107 | 108 | false 109 | 110 | 111 | false 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | {CCAA8FC9-4632-40B1-983D-FA57B868312D} 130 | XamarinForms 131 | 132 | 133 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamarinForms.Android", "XamarinForms.Android\XamarinForms.Android.csproj", "{997578DD-E6AD-4C37-8E34-FA67E83B668D}" 5 | EndProject 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamarinForms.iOS", "XamarinForms.iOS\XamarinForms.iOS.csproj", "{6826EC86-C97F-452A-8C5B-8F7A163F17CE}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamarinForms", "XamarinForms\XamarinForms.csproj", "{CCAA8FC9-4632-40B1-983D-FA57B868312D}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | Debug|iPhoneSimulator = Debug|iPhoneSimulator 15 | Release|iPhoneSimulator = Release|iPhoneSimulator 16 | Debug|iPhone = Debug|iPhone 17 | Release|iPhone = Release|iPhone 18 | EndGlobalSection 19 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 20 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Release|Any CPU.Build.0 = Release|Any CPU 24 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 25 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 26 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 27 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 28 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Debug|iPhone.ActiveCfg = Debug|Any CPU 29 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Debug|iPhone.Build.0 = Debug|Any CPU 30 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Release|iPhone.ActiveCfg = Release|Any CPU 31 | {997578DD-E6AD-4C37-8E34-FA67E83B668D}.Release|iPhone.Build.0 = Release|Any CPU 32 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator 33 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator 34 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator 35 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Release|Any CPU.Build.0 = Release|iPhoneSimulator 36 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator 37 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator 38 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator 39 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator 40 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Debug|iPhone.ActiveCfg = Debug|iPhone 41 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Debug|iPhone.Build.0 = Debug|iPhone 42 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Release|iPhone.ActiveCfg = Release|iPhone 43 | {6826EC86-C97F-452A-8C5B-8F7A163F17CE}.Release|iPhone.Build.0 = Release|iPhone 44 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 45 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Debug|Any CPU.Build.0 = Debug|Any CPU 46 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Release|Any CPU.ActiveCfg = Release|Any CPU 47 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Release|Any CPU.Build.0 = Release|Any CPU 48 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 49 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 50 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 51 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 52 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Debug|iPhone.ActiveCfg = Debug|Any CPU 53 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Debug|iPhone.Build.0 = Debug|Any CPU 54 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Release|iPhone.ActiveCfg = Release|Any CPU 55 | {CCAA8FC9-4632-40B1-983D-FA57B868312D}.Release|iPhone.Build.0 = Release|Any CPU 56 | EndGlobalSection 57 | EndGlobal 58 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms/App.xaml: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Xamarin.Forms; 3 | using Xamarin.Forms.Xaml; 4 | 5 | namespace XamarinForms 6 | { 7 | public partial class App : Application 8 | { 9 | public App() 10 | { 11 | InitializeComponent(); 12 | 13 | MainPage = new MainPage(); 14 | } 15 | 16 | protected override void OnStart() 17 | { 18 | // Handle when your app starts 19 | } 20 | 21 | protected override void OnSleep() 22 | { 23 | // Handle when your app sleeps 24 | } 25 | 26 | protected override void OnResume() 27 | { 28 | // Handle when your app resumes 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms.Xaml; 2 | 3 | [assembly: XamlCompilation(XamlCompilationOptions.Compile)] -------------------------------------------------------------------------------- /XamarinForms/XamarinForms/MainPage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | 10 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using Xamarin.Forms; 8 | 9 | namespace XamarinForms 10 | { 11 | // Learn more about making custom code visible in the Xamarin.Forms previewer 12 | // by visiting https://aka.ms/xamarinforms-previewer 13 | [DesignTimeVisible(false)] 14 | public partial class MainPage : ContentPage 15 | { 16 | public MainPage() 17 | { 18 | InitializeComponent(); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /XamarinForms/XamarinForms/XamarinForms.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netstandard2.0 5 | 6 | 7 | 8 | pdbonly 9 | true 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-architect -------------------------------------------------------------------------------- /dlang/helloWorld.d: -------------------------------------------------------------------------------- 1 | import std.stdio; 2 | 3 | void main(string[] args) { 4 | writeln("Hello World!"); 5 | } 6 | -------------------------------------------------------------------------------- /lolcode/helloworld.lol: -------------------------------------------------------------------------------- 1 | HAI 1.2 2 | CAN HAS STDIO? 3 | VISIBLE "HAI WORLD!!!1!" 4 | KTHXBYE --------------------------------------------------------------------------------