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/15] 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/15] 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/15] 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/15] 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/15] 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/15] 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/15] 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/15] 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/15] 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/15] 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