From 02c24accaedcc54879c25ddc517a37f1459f1d25 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 15:07:29 +0530 Subject: [PATCH 01/17] Create hello world program in pascal --- hello world program in pascal | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello world program in pascal diff --git a/hello world program in pascal b/hello world program in pascal new file mode 100644 index 0000000..3a38f49 --- /dev/null +++ b/hello world program in pascal @@ -0,0 +1,6 @@ +#hacktoberfest + +program HelloWorld; +begin + WriteLn('Hello, world!'); +end. From 306e1880bd7932f64b7a821a1d06e4f27f429cdc Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 15:12:53 +0530 Subject: [PATCH 02/17] Rename hello world program in pascal to pascal/hello world program in pascal --- .../hello world program in pascal | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename hello world program in pascal => pascal/hello world program in pascal (100%) diff --git a/hello world program in pascal b/pascal/hello world program in pascal similarity index 100% rename from hello world program in pascal rename to pascal/hello world program in pascal From de55d545ae72d2f16428ebda0401b3012bb01067 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 15:17:14 +0530 Subject: [PATCH 03/17] Create readme.md --- pascal/readme.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 pascal/readme.md diff --git a/pascal/readme.md b/pascal/readme.md new file mode 100644 index 0000000..ca27590 --- /dev/null +++ b/pascal/readme.md @@ -0,0 +1 @@ +Hello World in Pascal From fc65e8754e51464dd45a02e6240018655bed9e24 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 15:27:18 +0530 Subject: [PATCH 04/17] Rename hello world program in pascal to helloworld-dishant.pp --- pascal/{hello world program in pascal => helloworld-dishant.pp} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pascal/{hello world program in pascal => helloworld-dishant.pp} (100%) diff --git a/pascal/hello world program in pascal b/pascal/helloworld-dishant.pp similarity index 100% rename from pascal/hello world program in pascal rename to pascal/helloworld-dishant.pp From ffa413216be2495dfad6216bd1e73c83fd430d9b Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 15:34:54 +0530 Subject: [PATCH 05/17] Create helloworld-dishant.js --- javascript/helloworld-dishant.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 javascript/helloworld-dishant.js diff --git a/javascript/helloworld-dishant.js b/javascript/helloworld-dishant.js new file mode 100644 index 0000000..20a0d26 --- /dev/null +++ b/javascript/helloworld-dishant.js @@ -0,0 +1,16 @@ + + + + + +

Before the script...

+ + + +

...After the script.

+ + + + From dcc4f7e0076b801c6d6ecbf6e6027c0180c7cbc2 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 15:35:38 +0530 Subject: [PATCH 06/17] Create readme.md --- javascript/readme.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 javascript/readme.md diff --git a/javascript/readme.md b/javascript/readme.md new file mode 100644 index 0000000..c3e9546 --- /dev/null +++ b/javascript/readme.md @@ -0,0 +1 @@ +hello world program in javacript From dad7035a4914f3423a6a4fd4151a96e61d152040 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 17:26:02 +0530 Subject: [PATCH 07/17] Create helloworld-dishant.asm --- helloworld-dishant.asm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 helloworld-dishant.asm diff --git a/helloworld-dishant.asm b/helloworld-dishant.asm new file mode 100644 index 0000000..3ba58d6 --- /dev/null +++ b/helloworld-dishant.asm @@ -0,0 +1,16 @@ +hello-DOS.asm - single-segment, 16-bit "hello world" program +; +; assemble with "nasm -f bin -o hi.com hello-DOS.asm" + + org 0x100 ; .com files always start 256 bytes into the segment + + ; int 21h is going to want... + + mov dx, msg ; the address of or message in dx + mov ah, 9 ; ah=9 - "print string" sub-function + int 0x21 ; call dos services + + mov ah, 0x4c ; "terminate program" sub-function + int 0x21 ; call dos services + + msg db 'Hello, World!', 0x0d, 0x0a, '$' ; $-terminated message From 6ca0d8b5c1611f842e35814543b84ea62e03d9d1 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 17:26:54 +0530 Subject: [PATCH 08/17] Rename helloworld-dishant.asm to Assembly language/helloworld-dishant.asm --- .../helloworld-dishant.asm | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename helloworld-dishant.asm => Assembly language/helloworld-dishant.asm (100%) diff --git a/helloworld-dishant.asm b/Assembly language/helloworld-dishant.asm similarity index 100% rename from helloworld-dishant.asm rename to Assembly language/helloworld-dishant.asm From e98e2e181c928bb2cbc22c03813f9d48e931779d Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 17:29:23 +0530 Subject: [PATCH 09/17] Create readme.md --- Assembly language/readme.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 Assembly language/readme.md diff --git a/Assembly language/readme.md b/Assembly language/readme.md new file mode 100644 index 0000000..4bdc48f --- /dev/null +++ b/Assembly language/readme.md @@ -0,0 +1 @@ +HELLO WORLD PROGRAM IN X86 ASSEMBLY LANGUGAE From 68c303e2afd8568dec7928857f0cacfc8a31357f Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 17:45:31 +0530 Subject: [PATCH 10/17] create helloworld.m --- helloworld-dishant.m | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 helloworld-dishant.m diff --git a/helloworld-dishant.m b/helloworld-dishant.m new file mode 100644 index 0000000..11f647f --- /dev/null +++ b/helloworld-dishant.m @@ -0,0 +1,15 @@ +/* Hello World in Objective-C. +** Since the standard implementation is identical to K&R C, +** a version that says hello to a set of people passed on +** the command line is shown here. +*/ + +#include +#include +int main(int argc,char **argv) +{ + id set = [Set new]; + argv++;while (--argc) [set add:[String str:*argv++]]; + [set do:{ :each | printf("hello, %s!\n",[each str]); }]; + return 0; +} From a7fda5c48dbccfc353921722adeb97c3930d2e23 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sat, 3 Oct 2020 17:47:05 +0530 Subject: [PATCH 11/17] helloworld-dishant.m --- helloworld-dishant.m => objective c/helloworld-dishant.m | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename helloworld-dishant.m => objective c/helloworld-dishant.m (100%) diff --git a/helloworld-dishant.m b/objective c/helloworld-dishant.m similarity index 100% rename from helloworld-dishant.m rename to objective c/helloworld-dishant.m From 0085a70ec929173c841dd2e22afecb74a2272764 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sun, 4 Oct 2020 19:24:45 +0530 Subject: [PATCH 12/17] Create helloworld-dishant.ktm --- helloworld-dishant.ktm | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 helloworld-dishant.ktm diff --git a/helloworld-dishant.ktm b/helloworld-dishant.ktm new file mode 100644 index 0000000..6fe57e1 --- /dev/null +++ b/helloworld-dishant.ktm @@ -0,0 +1,6 @@ +#hacktoberfest + + +fun main(args: Array) { + println("Hello World!") +} From 8a7f2a6e9d34825c7f1e4339eb1c3e4d6492d10f Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sun, 4 Oct 2020 19:25:02 +0530 Subject: [PATCH 13/17] Delete helloworld-dishant.ktm --- helloworld-dishant.ktm | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 helloworld-dishant.ktm diff --git a/helloworld-dishant.ktm b/helloworld-dishant.ktm deleted file mode 100644 index 6fe57e1..0000000 --- a/helloworld-dishant.ktm +++ /dev/null @@ -1,6 +0,0 @@ -#hacktoberfest - - -fun main(args: Array) { - println("Hello World!") -} From 799028ede75ef6abc9fb72108140d282b5666563 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sun, 4 Oct 2020 19:27:09 +0530 Subject: [PATCH 14/17] Create helloworld-dishant.ktm --- helloworld-dishant.ktm | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 helloworld-dishant.ktm diff --git a/helloworld-dishant.ktm b/helloworld-dishant.ktm new file mode 100644 index 0000000..c2e5ec5 --- /dev/null +++ b/helloworld-dishant.ktm @@ -0,0 +1,5 @@ +# hacktoberfest + +fun main(args: Array) { + println("Hello World!") +} From c141a8f24afb3063016b64e8772a9b1704904044 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sun, 4 Oct 2020 19:28:31 +0530 Subject: [PATCH 15/17] Rename helloworld-dishant.ktm to kotlin/helloworld-dishant.ktm --- helloworld-dishant.ktm => kotlin/helloworld-dishant.ktm | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename helloworld-dishant.ktm => kotlin/helloworld-dishant.ktm (100%) diff --git a/helloworld-dishant.ktm b/kotlin/helloworld-dishant.ktm similarity index 100% rename from helloworld-dishant.ktm rename to kotlin/helloworld-dishant.ktm From c807e17a4d21f4e37fe3b0580ebdf0a385e422e8 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sun, 4 Oct 2020 19:29:41 +0530 Subject: [PATCH 16/17] Create readme.md --- kotlin/readme.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 kotlin/readme.md diff --git a/kotlin/readme.md b/kotlin/readme.md new file mode 100644 index 0000000..411910d --- /dev/null +++ b/kotlin/readme.md @@ -0,0 +1 @@ +hello world program in kotlin From df296911c377d341fe91c1a2831bcb743d099ee0 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Thu, 8 Oct 2020 12:24:48 +0530 Subject: [PATCH 17/17] Create Helloworld-dishant.ktm --- kotlin/Helloworld-dishant.ktm | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 kotlin/Helloworld-dishant.ktm diff --git a/kotlin/Helloworld-dishant.ktm b/kotlin/Helloworld-dishant.ktm new file mode 100644 index 0000000..623a930 --- /dev/null +++ b/kotlin/Helloworld-dishant.ktm @@ -0,0 +1,7 @@ +#hacktoberfest + +# hacktoberfest + +fun main(args: Array) { + println("Hello World!") +}