├── .github └── workflows │ └── generate-readme.yml ├── .gitignore ├── ABC ├── README.md ├── books.md ├── courses.md ├── examples │ └── ABC.abc ├── info.json └── resources.md ├── Abdal-Autoit ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.au3 ├── info.json └── resources.md ├── Ada ├── Examples │ └── helloworld.adb ├── README.md ├── books.md ├── courses.md ├── examples │ └── .gitkeep ├── info.json └── resources.md ├── Algol ├── README.md ├── books.md ├── courses.md ├── examples │ └── Algol.alg ├── info.json └── resources.md ├── Angular.js ├── README.md ├── books.md ├── courses.md ├── examples │ └── Angular.js ├── info.json └── resources.md ├── AppleScript ├── README.md ├── books.md ├── courses.md ├── examples │ └── AppleScript.scpt ├── info.json └── resources.md ├── Arduino ├── README.md ├── books.md ├── courses.md ├── examples │ └── arduino.ino ├── info.json └── resources.md ├── Assembly ├── README.md ├── books.md ├── courses.md ├── examples │ └── x86_assembly.asm ├── info.json └── resources.md ├── Awk ├── README.md ├── books.md ├── courses.md ├── examples │ └── helloworld.awk ├── info.json └── resources.md ├── B ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.b ├── info.json └── resources.md ├── Bash ├── README.md ├── books.md ├── courses.md ├── examples │ └── bash.sh ├── info.json └── resources.md ├── Basic ├── README.md ├── books.md ├── courses.md ├── examples │ └── Basic.bas ├── info.json └── resources.md ├── Batch ├── README.md ├── books.md ├── courses.md ├── examples │ └── batch.bat ├── info.json └── resources.md ├── Befunge ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.bf ├── info.json └── resources.md ├── Binary ├── README.md ├── books.md ├── courses.md ├── examples │ └── Binary.bin ├── info.json └── resources.md ├── Blender ├── README.md ├── books.md ├── courses.md ├── examples │ └── Blender.py ├── info.json └── resources.md ├── Brainfuck ├── README.md ├── books.md ├── courses.md ├── examples │ └── brainfuck.bf ├── info.json └── resources.md ├── C ├── README.md ├── books.md ├── courses.md ├── examples │ └── cLang.c ├── info.json └── resources.md ├── COBOL ├── README.md ├── books.md ├── courses.md ├── examples │ └── main.cbl ├── info.json └── resources.md ├── CONTRIBUTING.md ├── CONTRIBUTORS_LIST.md ├── Carbon ├── README.md ├── books.md ├── courses.md ├── examples │ ├── Fibonacci.Carbon │ └── HelloWorld.Carbon ├── info.json └── resources.md ├── Clipper ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello_world.prg ├── info.json └── resources.md ├── Clojure ├── README.md ├── books.md ├── courses.md ├── examples │ └── ClojureLang.clj ├── info.json └── resources.md ├── Cobra ├── README.md ├── books.md ├── courses.md ├── examples │ └── Cobra.cobra ├── info.json └── resources.md ├── CoffeScript ├── README.md ├── books.md ├── courses.md ├── examples │ └── Coffe.coffe ├── info.json └── resources.md ├── Cow ├── README.md ├── books.md ├── courses.md ├── examples │ ├── Cow.cow │ └── fib.cow ├── info.json └── resources.md ├── Cpp ├── README.md ├── books.md ├── courses.md ├── examples │ └── Cplusplus.cpp ├── info.json └── resources.md ├── Crystal ├── README.md ├── books.md ├── courses.md ├── examples │ └── helloworld.cr ├── info.json └── resources.md ├── Csharp ├── README.md ├── books.md ├── courses.md ├── examples │ └── CSharp.cs ├── info.json └── resources.md ├── Css ├── README.md ├── books.md ├── courses.md ├── examples │ └── CSS.css ├── info.json └── resources.md ├── Curl ├── README.md ├── books.md ├── courses.md ├── examples │ └── Curl.CURL ├── info.json └── resources.md ├── D ├── README.md ├── books.md ├── courses.md ├── examples │ └── Dlang.d ├── info.json └── resources.md ├── Dart ├── README.md ├── books.md ├── courses.md ├── examples │ ├── .gitattributes │ ├── 0-hello-world.dart │ └── cheatsheets │ │ ├── 01-print.dart │ │ ├── 02-variables-1.dart │ │ ├── 03-strings-1.dart │ │ ├── 04-strings-2.dart │ │ ├── 05-strings-3.dart │ │ ├── 06-converts.dart │ │ ├── 07-operators-1.dart │ │ ├── 08-operators-2.dart │ │ ├── 09-operators-3.dart │ │ ├── 10-operators-4.dart │ │ ├── 11-operators-5.dart │ │ ├── 12-operators-6.dart │ │ ├── 13-comments.dart │ │ ├── 14-variables-2.dart │ │ ├── 15-variables-3.dart │ │ ├── 16-variables-4.dart │ │ ├── 17-condition-1.dart │ │ ├── 18-loop-1.dart │ │ ├── 19-loop-2.dart │ │ ├── 20-loop-3.dart │ │ ├── 21-condition-2.dart │ │ ├── 22-enum-1.dart │ │ ├── 23-std-1.dart │ │ ├── 24-random.dart │ │ ├── 25-enum-2.dart │ │ ├── 26-lists-1.dart │ │ ├── 27-lists-2.dart │ │ ├── 28-lists-3.dart │ │ ├── 29-set-1.dart │ │ ├── 30-set-2.dart │ │ ├── 31-map-1.dart │ │ ├── 32-map-2.dart │ │ ├── 33-collections-operators-1.dart │ │ ├── 34-collections-operators-2.dart │ │ ├── 35-collections-operators-3.dart │ │ └── apps │ │ └── 01-rock_paper_scissors.dart ├── info.json └── resources.md ├── Delphi ├── README.md ├── books.md ├── courses.md ├── examples │ └── HelloWorld.dpr ├── info.json └── resources.md ├── Deno ├── README.md ├── books.md ├── courses.md ├── examples │ └── helloworld.js ├── info.json └── resources.md ├── Django ├── README.md ├── books.md ├── courses.md ├── examples │ └── Django.py ├── info.json └── resources.md ├── Docker ├── README.md ├── books.md ├── courses.md ├── examples │ ├── Dockerfile │ └── official.sh ├── info.json └── resources.md ├── Eiffel ├── README.md ├── books.md ├── courses.md ├── examples │ └── Eiffelfile.e ├── info.json └── resources.md ├── Elixir ├── README.md ├── books.md ├── courses.md ├── examples │ └── elixir.ex ├── info.json └── resources.md ├── Elm ├── README.md ├── books.md ├── courses.md ├── examples │ └── Elm.elm ├── info.json └── resources.md ├── Erlang ├── README.md ├── books.md ├── courses.md ├── examples │ └── Erlang.erl ├── info.json └── resources.md ├── Fastapi ├── README.md ├── books.md ├── courses.md ├── examples │ └── Fastapi.py ├── info.json └── resources.md ├── Flask ├── README.md ├── books.md ├── courses.md ├── examples │ └── Flask.py ├── info.json └── resources.md ├── Flutter ├── README.md ├── books.md ├── courses.md ├── examples │ └── main.dart ├── info.json └── resources.md ├── Forth ├── README.md ├── books.md ├── courses.md ├── examples │ └── Forth.fs ├── info.json └── resources.md ├── Fortran ├── README.md ├── books.md ├── courses.md ├── examples │ └── Fortran.F ├── info.json └── resources.md ├── Fsharp ├── README.md ├── books.md ├── courses.md ├── examples │ └── Fsharp.fs ├── info.json └── resources.md ├── Go-Gin ├── README.md ├── books.md ├── courses.md ├── examples │ └── gin.go ├── info.json └── resources.md ├── Go ├── README.md ├── books.md ├── courses.md ├── examples │ ├── GoLang.go │ ├── Slices.go │ ├── fib.go │ ├── file_in_Go.go │ └── io.go ├── info.json └── resources.md ├── Groovy ├── README.md ├── books.md ├── courses.md ├── examples │ ├── HelloWorld.groovy │ └── hello_world.groovy ├── info.json └── resources.md ├── Hack ├── README.md ├── books.md ├── courses.md ├── examples │ └── Hack.hh ├── info.json └── resources.md ├── Hascal ├── README.md ├── books.md ├── courses.md ├── examples │ └── Hascal.has ├── info.json └── resources.md ├── Hashemi ├── README.md ├── books.md ├── courses.md ├── examples │ └── Hello_World.hashem ├── info.json └── resources.md ├── Haskell ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.hs ├── info.json └── resources.md ├── Haxe ├── README.md ├── books.md ├── courses.md ├── examples │ └── HelloWorld.hx ├── info.json └── resources.md ├── Html ├── README.md ├── books.md ├── courses.md ├── examples │ └── HTML.html ├── info.json └── resources.md ├── Java ├── README.md ├── books.md ├── courses.md ├── examples │ └── Java.java ├── info.json └── resources.md ├── JavaScript ├── README.md ├── books.md ├── courses.md ├── examples │ ├── Javascript.js │ └── jsf.js ├── info.json └── resources.md ├── Jquery ├── README.md ├── books.md ├── courses.md ├── examples │ └── Hello-world.js ├── info.json └── resources.md ├── Julia ├── README.md ├── books.md ├── courses.md ├── examples │ └── julia.jl ├── info.json └── resources.md ├── Jython ├── README.md ├── books.md ├── courses.md ├── examples │ └── Jython.jy ├── info.json └── resources.md ├── Kotlin ├── README.md ├── books.md ├── courses.md ├── examples │ ├── .gitkeep │ └── Kotlin.kt ├── info.json └── resources.md ├── Ktor ├── README.md ├── books.md ├── courses.md ├── examples │ └── Ktor.kt ├── info.json └── resources.md ├── LICENSE ├── LOLCODE ├── README.md ├── books.md ├── courses.md ├── examples │ └── HelloWorld.lol ├── info.json └── resources.md ├── LaTeX ├── README.md ├── books.md ├── courses.md ├── examples │ ├── .gitkeep │ └── hello.tex ├── info.json └── resources.md ├── Lisp ├── README.md ├── books.md ├── courses.md ├── examples │ └── Lispfile.e ├── info.json └── resources.md ├── Lua ├── README.md ├── books.md ├── courses.md ├── examples │ └── Lua.lua ├── info.json └── resources.md ├── MIPS ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.s ├── info.json └── resources.md ├── Makefile ├── README.md ├── books.md ├── courses.md ├── examples │ ├── hellofunc.c │ ├── hellomake.c │ ├── hellomake.h │ └── makefile ├── info.json └── resources.md ├── Matlab ├── README.md ├── books.md ├── courses.md ├── examples │ └── HelloWorld.m ├── info.json └── resources.md ├── Mql4 ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.mq4 ├── info.json └── resources.md ├── Mql5 ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.mq5 ├── info.json └── resources.md ├── Neko-VM ├── README.md ├── books.md ├── courses.md ├── examples │ └── Neko.n ├── info.json └── resources.md ├── Nginx ├── README.md ├── books.md ├── courses.md ├── examples │ └── nginx.conf ├── info.json └── resources.md ├── Nim ├── README.md ├── books.md ├── courses.md ├── examples │ └── Nim.nim ├── info.json └── resources.md ├── Node.js ├── README.md ├── books.md ├── courses.md ├── examples │ └── helloworld.js ├── info.json └── resources.md ├── Not-English ├── README.md ├── books.md ├── courses.md ├── examples │ ├── HelloWorld.ext │ └── guess_a_number.ext ├── info.json └── resources.md ├── OBJECTIVE-C ├── README.md ├── books.md ├── courses.md ├── examples │ └── OBJECT-C.m ├── info.json └── resources.md ├── OCaml ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.ml ├── info.json └── resources.md ├── Octave ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello ├── info.json └── resources.md ├── Odin-lang ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.odin ├── info.json └── resources.md ├── Opa ├── README.md ├── books.md ├── courses.md ├── examples │ └── Opa.opa ├── info.json └── resources.md ├── Pascal ├── README.md ├── books.md ├── courses.md ├── examples │ └── Pascal.pas ├── info.json └── resources.md ├── Pashmak ├── README.md ├── books.md ├── courses.md ├── examples │ ├── array.pashm │ ├── ask_name.pashm │ ├── fib.pashm │ ├── get_password.pashm │ ├── hello.pashm │ ├── loop.pashm │ └── square.pashm ├── info.json └── resources.md ├── Perl ├── README.md ├── books.md ├── courses.md ├── examples │ └── perl.pl ├── info.json └── resources.md ├── Php ├── README.md ├── books.md ├── courses.md ├── examples │ ├── loop.php │ └── php.php ├── info.json └── resources.md ├── Piet ├── README.md ├── books.md ├── courses.md ├── examples │ └── styled_helloworld.png ├── info.json └── resources.md ├── Pine-Script ├── README.md ├── books.md ├── courses.md ├── examples │ └── PineScript.pine ├── info.json └── resources.md ├── Plus ├── README.md ├── books.md ├── courses.md ├── examples │ └── Plus.plus ├── info.json └── resources.md ├── Pony ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.pony ├── info.json └── resources.md ├── PowerShell ├── README.md ├── books.md ├── courses.md ├── examples │ └── powershell.ps1 ├── info.json └── resources.md ├── Prolog ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.pl ├── info.json └── resources.md ├── Python ├── README.md ├── books.md ├── courses.md ├── examples │ ├── .gitattributes │ ├── cheatsheets │ │ ├── file.py │ │ ├── for-loop.py │ │ ├── http_requests.py │ │ ├── if-else.py │ │ ├── os.py │ │ ├── recursion.py │ │ ├── takeinput.py │ │ ├── tkinter.py │ │ ├── try_except.py │ │ └── variable.py │ └── python.py ├── img │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ └── 7.png ├── info.json └── resources.md ├── QBasic ├── README.md ├── books.md ├── courses.md ├── examples │ └── .gitkeep ├── hello.bas ├── info.json └── resources.md ├── Qsharp ├── QuickStart.md ├── README.md ├── assets │ └── images │ │ ├── Introduction-to-Quantum-Computing-with QSharp-book.png │ │ ├── Learn to build your first quantum solution with the Quantum Development Kit and Q#.png │ │ ├── Listing 1.png │ │ ├── Listing 2.png │ │ ├── Listing 3.png │ │ ├── Listing 4.png │ │ ├── Listing5.png │ │ └── Qsharp language.jpg ├── books.md ├── courses.md ├── examples │ └── Operation.qs ├── info.json └── resources.md ├── R ├── README.md ├── books.md ├── courses.md ├── examples │ └── R.R ├── info.json └── resources.md ├── README.md ├── React-Native ├── README.md ├── books.md ├── courses.md ├── examples │ └── index.js ├── info.json └── resources.md ├── React ├── README.md ├── books.md ├── courses.md ├── examples │ └── index.js ├── info.json └── resources.md ├── Red ├── README.md ├── books.md ├── courses.md ├── examples │ └── main.red ├── info.json └── resources.md ├── Rockstar ├── README.md ├── books.md ├── courses.md ├── examples │ └── HelloWorld.rock ├── info.json └── resources.md ├── Ruby ├── README.md ├── books.md ├── courses.md ├── examples │ ├── 01-output.rb │ ├── 02-begin-end.rb │ ├── 03-classes.rb │ ├── 04-arrays.rb │ ├── 05-operators.rb │ ├── 06-conditions.rb │ ├── 07-loops.rb │ ├── 08-method.rb │ ├── 09-strings.rb │ ├── 10-arrays-2.rb │ ├── 11-hash.rb │ ├── 12-datetime.rb │ ├── 13-iterators.rb │ └── ruby.rb ├── info.json └── resources.md ├── Rust ├── README.md ├── books.md ├── courses.md ├── examples │ └── rust.rs ├── info.json └── resources.md ├── SQL ├── README.md ├── books.md ├── courses.md ├── examples │ └── SQL.sql ├── info.json └── resources.md ├── Scala ├── README.md ├── books.md ├── courses.md ├── examples │ └── Hello.scala ├── info.json └── resources.md ├── Scheme ├── README.md ├── books.md ├── courses.md ├── examples │ └── main.scm ├── info.json └── resources.md ├── Scratch ├── README.md ├── books.md ├── courses.md ├── examples │ └── SCRATCH.sb ├── info.json └── resources.md ├── Scss ├── README.md ├── books.md ├── courses.md ├── examples │ └── Scss.scss ├── info.json └── resources.md ├── Shakespeare ├── README.md ├── books.md ├── courses.md ├── examples │ └── shakespeare.spl ├── info.json └── resources.md ├── ShellScript ├── README.md ├── books.md ├── courses.md ├── examples │ └── helloworld.sh ├── info.json └── resources.md ├── Small-Basic ├── README.md ├── books.md ├── courses.md ├── examples │ ├── Hello World!.exe │ ├── Hello World!.pdb │ ├── Hello World!.sb │ └── SmallBasicLibrary.dll ├── info.json └── resources.md ├── Solidity ├── .gitignore ├── README.md ├── books.md ├── courses.md ├── examples │ ├── .gitignore │ └── Solidity.sol ├── info.json └── resources.md ├── Swift ├── README.md ├── books.md ├── courses.md ├── examples │ └── swift.swift ├── info.json └── resources.md ├── TODO.md ├── Tcl ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.tcl ├── info.json └── resources.md ├── Typescript ├── README.md ├── books.md ├── courses.md ├── examples │ ├── Express.ts │ ├── dataTypes.ts │ ├── fs.ts │ ├── interfaces.ts │ └── typescript.ts ├── info.json └── resources.md ├── V ├── README.md ├── books.md ├── courses.md ├── examples │ └── hello.v ├── info.json └── resources.md ├── VB ├── README.md ├── books.md ├── courses.md ├── examples │ └── main.vb ├── info.json └── resources.md ├── VBScript ├── README.md ├── books.md ├── courses.md ├── example │ └── VBScript.vbs ├── examples │ └── .gitkeep ├── info.json └── resources.md ├── Vala ├── README.md ├── books.md ├── courses.md ├── examples │ └── Vala.vala ├── info.json └── resources.md ├── Verilog ├── README.md ├── books.md ├── courses.md ├── examples │ └── Hello_World.v ├── info.json └── resources.md ├── Vim-Script ├── README.md ├── books.md ├── courses.md ├── examples │ └── vim.vim ├── info.json └── resources.md ├── Whitespace ├── README.md ├── books.md ├── courses.md ├── examples │ ├── Whitespace and C hello world │ └── helloworld.ws ├── info.json └── resources.md ├── YO ├── README.md ├── books.md ├── courses.md ├── examples │ └── .gitkeep ├── labra.yoda ├── resources.md ├── src │ └── main.yo └── target │ └── release │ └── YO.exe ├── Yacas ├── README.md ├── books.md ├── courses.md ├── examples │ ├── .gitkeep │ └── hello-world.yts ├── info.json └── resources.md ├── Zig-lang ├── README.md ├── books.md ├── courses.md ├── examples │ └── helloworld.zig ├── info.json └── resources.md ├── auto-gen.py ├── tree.txt ├── فردوسی ├── README.md ├── books.md ├── courses.md ├── examples │ ├── helloworld.fd │ └── if_else.fd ├── info.json └── resources.md └── قلب ├── README.md ├── books.md ├── courses.md ├── examples └── hello.alb ├── info.json └── resources.md /.github/workflows/generate-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/.github/workflows/generate-readme.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/.gitignore -------------------------------------------------------------------------------- /ABC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/ABC/README.md -------------------------------------------------------------------------------- /ABC/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/ABC/books.md -------------------------------------------------------------------------------- /ABC/courses.md: -------------------------------------------------------------------------------- 1 | Courses for ABC -------------------------------------------------------------------------------- /ABC/examples/ABC.abc: -------------------------------------------------------------------------------- 1 | WRITE "Hello, world!" -------------------------------------------------------------------------------- /ABC/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/ABC/info.json -------------------------------------------------------------------------------- /ABC/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/ABC/resources.md -------------------------------------------------------------------------------- /Abdal-Autoit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Abdal-Autoit/README.md -------------------------------------------------------------------------------- /Abdal-Autoit/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Abdal-Autoit 2 | -------------------------------------------------------------------------------- /Abdal-Autoit/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Abdal-Autoit 2 | -------------------------------------------------------------------------------- /Abdal-Autoit/examples/hello.au3: -------------------------------------------------------------------------------- 1 | #AutoIt3Wrapper_Change2CUI=y 2 | 3 | ConsoleWrite("Hello World !") 4 | 5 | Sleep(10000) -------------------------------------------------------------------------------- /Abdal-Autoit/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Abdal-Autoit/info.json -------------------------------------------------------------------------------- /Abdal-Autoit/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Abdal-Autoit 2 | -------------------------------------------------------------------------------- /Ada/Examples/helloworld.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Ada/Examples/helloworld.adb -------------------------------------------------------------------------------- /Ada/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Ada/README.md -------------------------------------------------------------------------------- /Ada/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Ada 2 | -------------------------------------------------------------------------------- /Ada/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Ada 2 | -------------------------------------------------------------------------------- /Ada/examples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ada/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Ada/info.json -------------------------------------------------------------------------------- /Ada/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Ada 2 | -------------------------------------------------------------------------------- /Algol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Algol/README.md -------------------------------------------------------------------------------- /Algol/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Algol 2 | -------------------------------------------------------------------------------- /Algol/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Algol 2 | -------------------------------------------------------------------------------- /Algol/examples/Algol.alg: -------------------------------------------------------------------------------- 1 | BEGIN DISPLAY("HELLO WORLD!") END. -------------------------------------------------------------------------------- /Algol/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Algol/info.json -------------------------------------------------------------------------------- /Algol/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Algol 2 | -------------------------------------------------------------------------------- /Angular.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Angular.js/README.md -------------------------------------------------------------------------------- /Angular.js/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Angular.js/books.md -------------------------------------------------------------------------------- /Angular.js/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Angular.js 2 | -------------------------------------------------------------------------------- /Angular.js/examples/Angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Angular.js/examples/Angular.js -------------------------------------------------------------------------------- /Angular.js/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Angular.js/info.json -------------------------------------------------------------------------------- /Angular.js/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Angular.js 2 | -------------------------------------------------------------------------------- /AppleScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/AppleScript/README.md -------------------------------------------------------------------------------- /AppleScript/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for AppleScript 2 | -------------------------------------------------------------------------------- /AppleScript/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for AppleScript 2 | -------------------------------------------------------------------------------- /AppleScript/examples/AppleScript.scpt: -------------------------------------------------------------------------------- 1 | say "Hello, world!" -------------------------------------------------------------------------------- /AppleScript/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/AppleScript/info.json -------------------------------------------------------------------------------- /AppleScript/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for AppleScript 2 | -------------------------------------------------------------------------------- /Arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Arduino/README.md -------------------------------------------------------------------------------- /Arduino/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Arduino/books.md -------------------------------------------------------------------------------- /Arduino/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Arduino 2 | -------------------------------------------------------------------------------- /Arduino/examples/arduino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Arduino/examples/arduino.ino -------------------------------------------------------------------------------- /Arduino/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Arduino/info.json -------------------------------------------------------------------------------- /Arduino/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Arduino 2 | -------------------------------------------------------------------------------- /Assembly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Assembly/README.md -------------------------------------------------------------------------------- /Assembly/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Assembly 2 | -------------------------------------------------------------------------------- /Assembly/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Assembly 2 | -------------------------------------------------------------------------------- /Assembly/examples/x86_assembly.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Assembly/examples/x86_assembly.asm -------------------------------------------------------------------------------- /Assembly/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Assembly/info.json -------------------------------------------------------------------------------- /Assembly/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Assembly 2 | -------------------------------------------------------------------------------- /Awk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Awk/README.md -------------------------------------------------------------------------------- /Awk/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Awk/books.md -------------------------------------------------------------------------------- /Awk/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Awk 2 | -------------------------------------------------------------------------------- /Awk/examples/helloworld.awk: -------------------------------------------------------------------------------- 1 | BEGIN { print "Hello World!" } 2 | -------------------------------------------------------------------------------- /Awk/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Awk/info.json -------------------------------------------------------------------------------- /Awk/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Awk 2 | -------------------------------------------------------------------------------- /B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/B/README.md -------------------------------------------------------------------------------- /B/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for B 2 | -------------------------------------------------------------------------------- /B/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for B 2 | -------------------------------------------------------------------------------- /B/examples/hello.b: -------------------------------------------------------------------------------- 1 | main() { 2 | puts("Hello World!"); 3 | } 4 | 5 | -------------------------------------------------------------------------------- /B/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/B/info.json -------------------------------------------------------------------------------- /B/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for B 2 | -------------------------------------------------------------------------------- /Bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Bash/README.md -------------------------------------------------------------------------------- /Bash/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Bash 2 | -------------------------------------------------------------------------------- /Bash/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Bash 2 | -------------------------------------------------------------------------------- /Bash/examples/bash.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # ebad84 3 | echo Hello World! 4 | -------------------------------------------------------------------------------- /Bash/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Bash/info.json -------------------------------------------------------------------------------- /Bash/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Bash 2 | -------------------------------------------------------------------------------- /Basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Basic/README.md -------------------------------------------------------------------------------- /Basic/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Basic 2 | -------------------------------------------------------------------------------- /Basic/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Basic 2 | -------------------------------------------------------------------------------- /Basic/examples/Basic.bas: -------------------------------------------------------------------------------- 1 | 10 PRINT "Hello, World!" 2 | 20 END -------------------------------------------------------------------------------- /Basic/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Basic/info.json -------------------------------------------------------------------------------- /Basic/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Basic 2 | -------------------------------------------------------------------------------- /Batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Batch/README.md -------------------------------------------------------------------------------- /Batch/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Batch 2 | -------------------------------------------------------------------------------- /Batch/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Batch 2 | -------------------------------------------------------------------------------- /Batch/examples/batch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Batch/examples/batch.bat -------------------------------------------------------------------------------- /Batch/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Batch/info.json -------------------------------------------------------------------------------- /Batch/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Batch 2 | -------------------------------------------------------------------------------- /Befunge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Befunge/README.md -------------------------------------------------------------------------------- /Befunge/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Befunge 2 | -------------------------------------------------------------------------------- /Befunge/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Befunge 2 | -------------------------------------------------------------------------------- /Befunge/examples/hello.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Befunge/examples/hello.bf -------------------------------------------------------------------------------- /Befunge/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Befunge/info.json -------------------------------------------------------------------------------- /Befunge/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Befunge 2 | -------------------------------------------------------------------------------- /Binary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Binary/README.md -------------------------------------------------------------------------------- /Binary/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Binary 2 | -------------------------------------------------------------------------------- /Binary/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Binary 2 | -------------------------------------------------------------------------------- /Binary/examples/Binary.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Binary/examples/Binary.bin -------------------------------------------------------------------------------- /Binary/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Binary/info.json -------------------------------------------------------------------------------- /Binary/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Binary 2 | -------------------------------------------------------------------------------- /Blender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Blender/README.md -------------------------------------------------------------------------------- /Blender/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Blender 2 | -------------------------------------------------------------------------------- /Blender/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Blender -------------------------------------------------------------------------------- /Blender/examples/Blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Blender/examples/Blender.py -------------------------------------------------------------------------------- /Blender/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Blender/info.json -------------------------------------------------------------------------------- /Blender/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Blender -------------------------------------------------------------------------------- /Brainfuck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Brainfuck/README.md -------------------------------------------------------------------------------- /Brainfuck/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Brainfuck 2 | -------------------------------------------------------------------------------- /Brainfuck/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Brainfuck 2 | -------------------------------------------------------------------------------- /Brainfuck/examples/brainfuck.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Brainfuck/examples/brainfuck.bf -------------------------------------------------------------------------------- /Brainfuck/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Brainfuck/info.json -------------------------------------------------------------------------------- /Brainfuck/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Brainfuck 2 | -------------------------------------------------------------------------------- /C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/C/README.md -------------------------------------------------------------------------------- /C/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for C 2 | -------------------------------------------------------------------------------- /C/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for C 2 | -------------------------------------------------------------------------------- /C/examples/cLang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/C/examples/cLang.c -------------------------------------------------------------------------------- /C/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/C/info.json -------------------------------------------------------------------------------- /C/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for C 2 | -------------------------------------------------------------------------------- /COBOL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/COBOL/README.md -------------------------------------------------------------------------------- /COBOL/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for COBOL 2 | -------------------------------------------------------------------------------- /COBOL/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for COBOL 2 | -------------------------------------------------------------------------------- /COBOL/examples/main.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/COBOL/examples/main.cbl -------------------------------------------------------------------------------- /COBOL/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/COBOL/info.json -------------------------------------------------------------------------------- /COBOL/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for COBOL 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS_LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/CONTRIBUTORS_LIST.md -------------------------------------------------------------------------------- /Carbon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Carbon/README.md -------------------------------------------------------------------------------- /Carbon/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Carbon 2 | -------------------------------------------------------------------------------- /Carbon/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Carbon 2 | -------------------------------------------------------------------------------- /Carbon/examples/Fibonacci.Carbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Carbon/examples/Fibonacci.Carbon -------------------------------------------------------------------------------- /Carbon/examples/HelloWorld.Carbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Carbon/examples/HelloWorld.Carbon -------------------------------------------------------------------------------- /Carbon/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Carbon/info.json -------------------------------------------------------------------------------- /Carbon/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Carbon/resources.md -------------------------------------------------------------------------------- /Clipper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Clipper/README.md -------------------------------------------------------------------------------- /Clipper/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Clipper 2 | -------------------------------------------------------------------------------- /Clipper/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Clipper 2 | -------------------------------------------------------------------------------- /Clipper/examples/hello_world.prg: -------------------------------------------------------------------------------- 1 | function MAIN 2 | clear 3 | ?"hello_world" 4 | wait 5 | return 6 | -------------------------------------------------------------------------------- /Clipper/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Clipper/info.json -------------------------------------------------------------------------------- /Clipper/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Clipper 2 | -------------------------------------------------------------------------------- /Clojure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Clojure/README.md -------------------------------------------------------------------------------- /Clojure/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Clojure 2 | -------------------------------------------------------------------------------- /Clojure/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Clojure 2 | -------------------------------------------------------------------------------- /Clojure/examples/ClojureLang.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Clojure/examples/ClojureLang.clj -------------------------------------------------------------------------------- /Clojure/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Clojure/info.json -------------------------------------------------------------------------------- /Clojure/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Clojure 2 | -------------------------------------------------------------------------------- /Cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cobra/README.md -------------------------------------------------------------------------------- /Cobra/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Cobra 2 | -------------------------------------------------------------------------------- /Cobra/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Cobra 2 | -------------------------------------------------------------------------------- /Cobra/examples/Cobra.cobra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cobra/examples/Cobra.cobra -------------------------------------------------------------------------------- /Cobra/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cobra/info.json -------------------------------------------------------------------------------- /Cobra/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Cobra 2 | -------------------------------------------------------------------------------- /CoffeScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/CoffeScript/README.md -------------------------------------------------------------------------------- /CoffeScript/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for CoffeScript 2 | -------------------------------------------------------------------------------- /CoffeScript/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for CoffeScript 2 | -------------------------------------------------------------------------------- /CoffeScript/examples/Coffe.coffe: -------------------------------------------------------------------------------- 1 | console.log 'Hello world !' 2 | -------------------------------------------------------------------------------- /CoffeScript/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/CoffeScript/info.json -------------------------------------------------------------------------------- /CoffeScript/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for CoffeScript 2 | -------------------------------------------------------------------------------- /Cow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cow/README.md -------------------------------------------------------------------------------- /Cow/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Cow 2 | -------------------------------------------------------------------------------- /Cow/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Cow 2 | -------------------------------------------------------------------------------- /Cow/examples/Cow.cow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cow/examples/Cow.cow -------------------------------------------------------------------------------- /Cow/examples/fib.cow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cow/examples/fib.cow -------------------------------------------------------------------------------- /Cow/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cow/info.json -------------------------------------------------------------------------------- /Cow/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Cow 2 | -------------------------------------------------------------------------------- /Cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cpp/README.md -------------------------------------------------------------------------------- /Cpp/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cpp/books.md -------------------------------------------------------------------------------- /Cpp/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Cpp 2 | -------------------------------------------------------------------------------- /Cpp/examples/Cplusplus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cpp/examples/Cplusplus.cpp -------------------------------------------------------------------------------- /Cpp/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Cpp/info.json -------------------------------------------------------------------------------- /Cpp/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Cpp 2 | -------------------------------------------------------------------------------- /Crystal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Crystal/README.md -------------------------------------------------------------------------------- /Crystal/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Crystal 2 | -------------------------------------------------------------------------------- /Crystal/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Crystal 2 | -------------------------------------------------------------------------------- /Crystal/examples/helloworld.cr: -------------------------------------------------------------------------------- 1 | puts "Hello World" 2 | -------------------------------------------------------------------------------- /Crystal/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Crystal/info.json -------------------------------------------------------------------------------- /Crystal/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Crystal 2 | -------------------------------------------------------------------------------- /Csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Csharp/README.md -------------------------------------------------------------------------------- /Csharp/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Csharp/books.md -------------------------------------------------------------------------------- /Csharp/courses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Csharp/courses.md -------------------------------------------------------------------------------- /Csharp/examples/CSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Csharp/examples/CSharp.cs -------------------------------------------------------------------------------- /Csharp/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Csharp/info.json -------------------------------------------------------------------------------- /Csharp/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Csharp/resources.md -------------------------------------------------------------------------------- /Css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Css/README.md -------------------------------------------------------------------------------- /Css/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Css 2 | -------------------------------------------------------------------------------- /Css/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Css 2 | -------------------------------------------------------------------------------- /Css/examples/CSS.css: -------------------------------------------------------------------------------- 1 | body:before{ 2 | content: "Hello Word!"; 3 | } 4 | -------------------------------------------------------------------------------- /Css/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Css/info.json -------------------------------------------------------------------------------- /Css/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Css 2 | -------------------------------------------------------------------------------- /Curl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Curl/README.md -------------------------------------------------------------------------------- /Curl/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Curl 2 | -------------------------------------------------------------------------------- /Curl/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Curl 2 | -------------------------------------------------------------------------------- /Curl/examples/Curl.CURL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Curl/examples/Curl.CURL -------------------------------------------------------------------------------- /Curl/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Curl/info.json -------------------------------------------------------------------------------- /Curl/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Curl 2 | -------------------------------------------------------------------------------- /D/README.md: -------------------------------------------------------------------------------- 1 | # D 2 | -------------------------------------------------------------------------------- /D/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for D 2 | -------------------------------------------------------------------------------- /D/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for D 2 | -------------------------------------------------------------------------------- /D/examples/Dlang.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/D/examples/Dlang.d -------------------------------------------------------------------------------- /D/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/D/info.json -------------------------------------------------------------------------------- /D/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for D 2 | -------------------------------------------------------------------------------- /Dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/README.md -------------------------------------------------------------------------------- /Dart/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Dart 2 | -------------------------------------------------------------------------------- /Dart/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Dart 2 | -------------------------------------------------------------------------------- /Dart/examples/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/.gitattributes -------------------------------------------------------------------------------- /Dart/examples/0-hello-world.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print('Hello, World!'); 3 | } 4 | -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/01-print.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/01-print.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/02-variables-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/02-variables-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/03-strings-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/03-strings-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/04-strings-2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/04-strings-2.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/05-strings-3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/05-strings-3.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/06-converts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/06-converts.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/07-operators-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/07-operators-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/08-operators-2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/08-operators-2.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/09-operators-3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/09-operators-3.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/10-operators-4.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/10-operators-4.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/11-operators-5.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/11-operators-5.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/12-operators-6.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/12-operators-6.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/13-comments.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/13-comments.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/14-variables-2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/14-variables-2.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/15-variables-3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/15-variables-3.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/16-variables-4.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/16-variables-4.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/17-condition-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/17-condition-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/18-loop-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/18-loop-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/19-loop-2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/19-loop-2.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/20-loop-3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/20-loop-3.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/21-condition-2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/21-condition-2.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/22-enum-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/22-enum-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/23-std-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/23-std-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/24-random.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/24-random.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/25-enum-2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/25-enum-2.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/26-lists-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/26-lists-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/27-lists-2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/27-lists-2.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/28-lists-3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/28-lists-3.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/29-set-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/29-set-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/30-set-2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/30-set-2.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/31-map-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/31-map-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/32-map-2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/32-map-2.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/33-collections-operators-1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/33-collections-operators-1.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/34-collections-operators-2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/34-collections-operators-2.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/35-collections-operators-3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/35-collections-operators-3.dart -------------------------------------------------------------------------------- /Dart/examples/cheatsheets/apps/01-rock_paper_scissors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/examples/cheatsheets/apps/01-rock_paper_scissors.dart -------------------------------------------------------------------------------- /Dart/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Dart/info.json -------------------------------------------------------------------------------- /Dart/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Dart 2 | -------------------------------------------------------------------------------- /Delphi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Delphi/README.md -------------------------------------------------------------------------------- /Delphi/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Delphi/books.md -------------------------------------------------------------------------------- /Delphi/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Css 2 | -------------------------------------------------------------------------------- /Delphi/examples/HelloWorld.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Delphi/examples/HelloWorld.dpr -------------------------------------------------------------------------------- /Delphi/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Delphi/info.json -------------------------------------------------------------------------------- /Delphi/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Delphi/resources.md -------------------------------------------------------------------------------- /Deno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Deno/README.md -------------------------------------------------------------------------------- /Deno/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Deno -------------------------------------------------------------------------------- /Deno/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Deno -------------------------------------------------------------------------------- /Deno/examples/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Deno/examples/helloworld.js -------------------------------------------------------------------------------- /Deno/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Deno/info.json -------------------------------------------------------------------------------- /Deno/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Deno -------------------------------------------------------------------------------- /Django/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Django/README.md -------------------------------------------------------------------------------- /Django/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Django 2 | -------------------------------------------------------------------------------- /Django/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Django -------------------------------------------------------------------------------- /Django/examples/Django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Django/examples/Django.py -------------------------------------------------------------------------------- /Django/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Django/info.json -------------------------------------------------------------------------------- /Django/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Django -------------------------------------------------------------------------------- /Docker/README.md: -------------------------------------------------------------------------------- 1 | # Docker 2 | -------------------------------------------------------------------------------- /Docker/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Docker 2 | -------------------------------------------------------------------------------- /Docker/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Docker 2 | -------------------------------------------------------------------------------- /Docker/examples/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | 3 | CMD ["echo", "Hello World!"] -------------------------------------------------------------------------------- /Docker/examples/official.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | docker run --rm hello-world 4 | -------------------------------------------------------------------------------- /Docker/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Docker/info.json -------------------------------------------------------------------------------- /Docker/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Docker 2 | -------------------------------------------------------------------------------- /Eiffel/README.md: -------------------------------------------------------------------------------- 1 | # Eiffel 2 | -------------------------------------------------------------------------------- /Eiffel/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Eiffel 2 | -------------------------------------------------------------------------------- /Eiffel/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Eiffel 2 | -------------------------------------------------------------------------------- /Eiffel/examples/Eiffelfile.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Eiffel/examples/Eiffelfile.e -------------------------------------------------------------------------------- /Eiffel/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Eiffel/info.json -------------------------------------------------------------------------------- /Eiffel/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Eiffel 2 | -------------------------------------------------------------------------------- /Elixir/README.md: -------------------------------------------------------------------------------- 1 | # Elixir 2 | -------------------------------------------------------------------------------- /Elixir/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Elixir 2 | -------------------------------------------------------------------------------- /Elixir/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Elixir 2 | -------------------------------------------------------------------------------- /Elixir/examples/elixir.ex: -------------------------------------------------------------------------------- 1 | IO.puts "Hello World" 2 | -------------------------------------------------------------------------------- /Elixir/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Elixir/info.json -------------------------------------------------------------------------------- /Elixir/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Elixir 2 | -------------------------------------------------------------------------------- /Elm/README.md: -------------------------------------------------------------------------------- 1 | # Elm 2 | -------------------------------------------------------------------------------- /Elm/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Elm 2 | -------------------------------------------------------------------------------- /Elm/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Elm 2 | -------------------------------------------------------------------------------- /Elm/examples/Elm.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Elm/examples/Elm.elm -------------------------------------------------------------------------------- /Elm/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Elm/info.json -------------------------------------------------------------------------------- /Elm/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Elm 2 | -------------------------------------------------------------------------------- /Erlang/README.md: -------------------------------------------------------------------------------- 1 | # Erlang 2 | -------------------------------------------------------------------------------- /Erlang/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Erlang 2 | -------------------------------------------------------------------------------- /Erlang/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Erlang 2 | -------------------------------------------------------------------------------- /Erlang/examples/Erlang.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Erlang/examples/Erlang.erl -------------------------------------------------------------------------------- /Erlang/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Erlang/info.json -------------------------------------------------------------------------------- /Erlang/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Erlang 2 | -------------------------------------------------------------------------------- /Fastapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Fastapi/README.md -------------------------------------------------------------------------------- /Fastapi/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Fastapi 2 | -------------------------------------------------------------------------------- /Fastapi/courses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Fastapi/courses.md -------------------------------------------------------------------------------- /Fastapi/examples/Fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Fastapi/examples/Fastapi.py -------------------------------------------------------------------------------- /Fastapi/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Fastapi/info.json -------------------------------------------------------------------------------- /Fastapi/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Fastapi/resources.md -------------------------------------------------------------------------------- /Flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Flask/README.md -------------------------------------------------------------------------------- /Flask/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Flask 2 | -------------------------------------------------------------------------------- /Flask/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Flask -------------------------------------------------------------------------------- /Flask/examples/Flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Flask/examples/Flask.py -------------------------------------------------------------------------------- /Flask/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Flask/info.json -------------------------------------------------------------------------------- /Flask/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Flask -------------------------------------------------------------------------------- /Flutter/README.md: -------------------------------------------------------------------------------- 1 | # Flutter 2 | -------------------------------------------------------------------------------- /Flutter/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Flutter 2 | -------------------------------------------------------------------------------- /Flutter/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Flutter 2 | -------------------------------------------------------------------------------- /Flutter/examples/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Flutter/examples/main.dart -------------------------------------------------------------------------------- /Flutter/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Flutter/info.json -------------------------------------------------------------------------------- /Flutter/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Flutter 2 | -------------------------------------------------------------------------------- /Forth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Forth/README.md -------------------------------------------------------------------------------- /Forth/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Forth/books.md -------------------------------------------------------------------------------- /Forth/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Forth 2 | -------------------------------------------------------------------------------- /Forth/examples/Forth.fs: -------------------------------------------------------------------------------- 1 | CR ." Hello, World! " 2 | -------------------------------------------------------------------------------- /Forth/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Forth/info.json -------------------------------------------------------------------------------- /Forth/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Forth/resources.md -------------------------------------------------------------------------------- /Fortran/README.md: -------------------------------------------------------------------------------- 1 | # Fortran 2 | -------------------------------------------------------------------------------- /Fortran/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Fortran 2 | -------------------------------------------------------------------------------- /Fortran/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Fortran 2 | -------------------------------------------------------------------------------- /Fortran/examples/Fortran.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Fortran/examples/Fortran.F -------------------------------------------------------------------------------- /Fortran/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Fortran/info.json -------------------------------------------------------------------------------- /Fortran/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Fortran 2 | -------------------------------------------------------------------------------- /Fsharp/README.md: -------------------------------------------------------------------------------- 1 | # Fsharp 2 | -------------------------------------------------------------------------------- /Fsharp/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Fsharp 2 | -------------------------------------------------------------------------------- /Fsharp/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Fsharp 2 | -------------------------------------------------------------------------------- /Fsharp/examples/Fsharp.fs: -------------------------------------------------------------------------------- 1 | open System 2 | Console.WriteLine("Hello World!") -------------------------------------------------------------------------------- /Fsharp/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Fsharp/info.json -------------------------------------------------------------------------------- /Fsharp/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Fsharp 2 | -------------------------------------------------------------------------------- /Go-Gin/README.md: -------------------------------------------------------------------------------- 1 | # Go-Gin 2 | -------------------------------------------------------------------------------- /Go-Gin/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Go-Gin 2 | -------------------------------------------------------------------------------- /Go-Gin/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Go-Gin 2 | -------------------------------------------------------------------------------- /Go-Gin/examples/gin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go-Gin/examples/gin.go -------------------------------------------------------------------------------- /Go-Gin/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go-Gin/info.json -------------------------------------------------------------------------------- /Go-Gin/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Go-Gin 2 | -------------------------------------------------------------------------------- /Go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go/README.md -------------------------------------------------------------------------------- /Go/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go/books.md -------------------------------------------------------------------------------- /Go/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Go 2 | -------------------------------------------------------------------------------- /Go/examples/GoLang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go/examples/GoLang.go -------------------------------------------------------------------------------- /Go/examples/Slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go/examples/Slices.go -------------------------------------------------------------------------------- /Go/examples/fib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go/examples/fib.go -------------------------------------------------------------------------------- /Go/examples/file_in_Go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go/examples/file_in_Go.go -------------------------------------------------------------------------------- /Go/examples/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go/examples/io.go -------------------------------------------------------------------------------- /Go/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go/info.json -------------------------------------------------------------------------------- /Go/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Go/resources.md -------------------------------------------------------------------------------- /Groovy/README.md: -------------------------------------------------------------------------------- 1 | # Groovy 2 | -------------------------------------------------------------------------------- /Groovy/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Groovy 2 | -------------------------------------------------------------------------------- /Groovy/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Groovy 2 | -------------------------------------------------------------------------------- /Groovy/examples/HelloWorld.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Groovy/examples/HelloWorld.groovy -------------------------------------------------------------------------------- /Groovy/examples/hello_world.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Groovy/examples/hello_world.groovy -------------------------------------------------------------------------------- /Groovy/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamidreza01/Hello-World/HEAD/Groovy/info.json -------------------------------------------------------------------------------- /Groovy/resources.md: -------------------------------------------------------------------------------- 1 | # Useful Resources for Groovy 2 | -------------------------------------------------------------------------------- /Hack/README.md: -------------------------------------------------------------------------------- 1 | # Hack 2 | -------------------------------------------------------------------------------- /Hack/books.md: -------------------------------------------------------------------------------- 1 | # Useful Books for Hack 2 | -------------------------------------------------------------------------------- /Hack/courses.md: -------------------------------------------------------------------------------- 1 | # Useful Tutorial courses for Hack 2 | -------------------------------------------------------------------------------- /Hack/examples/Hack.hh: -------------------------------------------------------------------------------- 1 |