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 +#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/15] 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/15] 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/15] 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 4be4c980a2acfe06728ee30a48eaf9d130bf3e78 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sun, 4 Oct 2020 19:37:54 +0530 Subject: [PATCH 14/15] Create helloworld-dishant.b --- B/helloworld-dishant.b | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 B/helloworld-dishant.b diff --git a/B/helloworld-dishant.b b/B/helloworld-dishant.b new file mode 100644 index 0000000..c1624e1 --- /dev/null +++ b/B/helloworld-dishant.b @@ -0,0 +1,27 @@ +#hacktoberfest + +#B is a programming language developed at Bell Labs around 1969 and is a simplified successor to BCPL. +#It was in 1972 that Kernighan was tasked with writing a manual for using B that was to be used internally at Bell Labs. + + +main( ) { + extrn a, b, c; + putchar(a); putchar(b); putchar(c); putchar(’!*n’); +} +a ’hell’; +b ’o, w’; +c ’orld’; + + +#Functions, to demonstrate the composition of functions: + +main( ) { + extrn a,b,c,d; + put2char(a,b) ; + put2char(c,d) ; +} +put2char(x,y) { + putchar(x); + putchar(y); +} +a ’hell’; b ’o, w’; c ’orld’; d ’!*n’; From ae844978f0b464acba44927da0a0e6e67c86cee1 Mon Sep 17 00:00:00 2001 From: dishant12345 <51524568+dishant12345@users.noreply.github.com> Date: Sun, 4 Oct 2020 19:40:06 +0530 Subject: [PATCH 15/15] Create readme.md --- B/readme.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 B/readme.md diff --git a/B/readme.md b/B/readme.md new file mode 100644 index 0000000..3418c7b --- /dev/null +++ b/B/readme.md @@ -0,0 +1 @@ +this is a hello world program in B programming language