From eeac4797da12426c3b2d1c2d17471af22cb8d328 Mon Sep 17 00:00:00 2001 From: Nimplex <39964594+Nimplex@users.noreply.github.com> Date: Wed, 1 Jul 2020 22:18:41 +0200 Subject: [PATCH 01/25] Added Milkscript (#760) --- README.md | 1 + m/milkscript.milk | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 m/milkscript.milk diff --git a/README.md b/README.md index ce5f86b9..d606ad6a 100755 --- a/README.md +++ b/README.md @@ -389,6 +389,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Mel](m/mel.mel) * [Meq](m/meq.meq) * [Mercury](m/mercury.m) +* [Milkscript](m/milkscript.milk) * [Minecraft](m/minecraft) * [Mips](m/mips.s) * [Mirc](m/mirc.mrc) diff --git a/m/milkscript.milk b/m/milkscript.milk new file mode 100644 index 00000000..9f9ab571 --- /dev/null +++ b/m/milkscript.milk @@ -0,0 +1,2 @@ +#import "basic" +print("Hello World") From 1755db21e86c3af038e288e9782f50ecc1a43b13 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Thu, 2 Jul 2020 08:20:29 +1200 Subject: [PATCH 02/25] Regenerate list Signed-off-by: Richie Bendall --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d606ad6a..85684588 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (661 total) +## Languages (662 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) From dda78dbcf69b66ea13f28cf1300d53718c44da03 Mon Sep 17 00:00:00 2001 From: Haz Date: Wed, 15 Jul 2020 05:57:10 +0200 Subject: [PATCH 03/25] Add ATS2 (#767) --- README.md | 3 ++- a/ATS2.dats | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 a/ATS2.dats diff --git a/README.md b/README.md index 85684588..4403d569 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (662 total) +## Languages (663 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -108,6 +108,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Assembler Z80 Knightos](a/assembler_z80_knightos.asm) * [Assembler Z80 Ti83Calculator](a/assembler_z80_ti83calculator.asm) * [Assembler Z80 Zxspectrum](a/assembler_z80_zxspectrum.asm) +* [ATS2](a/ATS2.dats) * [Attache](a/Attache.%40) * [Autohotkey](a/autohotkey.ahk) * [Autoit](a/autoit.au3) diff --git a/a/ATS2.dats b/a/ATS2.dats new file mode 100644 index 00000000..4add1e9c --- /dev/null +++ b/a/ATS2.dats @@ -0,0 +1,4 @@ +val _ = + print ("Hello world\n") + +implement main0 () = () From 095fe96543fcdfefeac20b065da61ed481a95ef7 Mon Sep 17 00:00:00 2001 From: Edvard Busck-Nielsen Date: Wed, 15 Jul 2020 11:25:43 +0300 Subject: [PATCH 04/25] Added Enkelt (#769) --- README.md | 5 +++-- e/enkelt.e | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 e/enkelt.e diff --git a/README.md b/README.md index 4403d569..60e95eb9 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (663 total) +## Languages (664 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -108,7 +108,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Assembler Z80 Knightos](a/assembler_z80_knightos.asm) * [Assembler Z80 Ti83Calculator](a/assembler_z80_ti83calculator.asm) * [Assembler Z80 Zxspectrum](a/assembler_z80_zxspectrum.asm) -* [ATS2](a/ATS2.dats) +* [Ats2](a/ATS2.dats) * [Attache](a/Attache.%40) * [Autohotkey](a/autohotkey.ahk) * [Autoit](a/autoit.au3) @@ -237,6 +237,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Emmental](e/emmental.emmental) * [Emojicode](e/emojicode.emojic) * [Emoticon](e/emoticon.emoticon) +* [Enkelt](e/enkelt.e) * [Eoool](e/EOOOL.eoool) * [Erlang](e/erlang.erl) * [Erlang Escript](e/erlang_escript.erl) diff --git a/e/enkelt.e b/e/enkelt.e new file mode 100644 index 00000000..7fc6444a --- /dev/null +++ b/e/enkelt.e @@ -0,0 +1 @@ +skriv("Hello World") \ No newline at end of file From bf040b6a935835afc1f275926a91963fd4319483 Mon Sep 17 00:00:00 2001 From: Bangyen Pham <66754151+bangyen@users.noreply.github.com> Date: Wed, 15 Jul 2020 04:26:12 -0400 Subject: [PATCH 05/25] Added Factors (#768) --- README.md | 1 + f/factors.fact | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 f/factors.fact diff --git a/README.md b/README.md index 60e95eb9..f9b78b8a 100755 --- a/README.md +++ b/README.md @@ -244,6 +244,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Euphoria](e/euphoria.ex) * [Express](e/express.js) * [Factor](f/factor.factor) +* [Factors](f/factors.fact) * [Falcon](f/falcon.fal) * [False](f/false.f) * [Fancy](f/fancy.fy) diff --git a/f/factors.fact b/f/factors.fact new file mode 100644 index 00000000..97506828 --- /dev/null +++ b/f/factors.fact @@ -0,0 +1,3 @@ +1240479476546339573634662660744997483390159825927257577642211238764859751532647897788588745690462747 +2954259026932147401271063216759368974236989467343884314431173679900151962232540368081876543214803741 +27355669151693462637517323355034011282348481257152244997524115792512161 From 43537f7cedd94419bb8bc7e9d487332fcc98d46f Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 15 Jul 2020 20:30:04 +1200 Subject: [PATCH 06/25] Simplify example --- b/B.b | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/b/B.b b/b/B.b index 6ebd0274..d98e47be 100755 --- a/b/B.b +++ b/b/B.b @@ -1,10 +1,3 @@ -/* Hello World in B */ - main() { - extern a, b, c; - putchar (a); putchar (b); putchar (c); putchar ('!*n'); + putchar ('Hell'); putchar ('o Wo'); putchar ('rld'); putchar ('*n'); } - -a 'hell' ; -b 'o, w' ; -c 'orld' ; From d254df8def1672b245f0693248c793f4cbd323fd Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 15 Jul 2020 20:49:16 +1200 Subject: [PATCH 07/25] Print "Hello World" instead of "Hello World!" --- m/malbolge.mbg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m/malbolge.mbg b/m/malbolge.mbg index bf0688ff..84da6522 100755 --- a/m/malbolge.mbg +++ b/m/malbolge.mbg @@ -1 +1 @@ - (=<`#9]~6ZY32Vx/4Rs+0No-&Jk)"Fh}|Bcy?`=*z]Kw%oG4UUS0/@-ejc(:'8dc +D'`$MLKJ}|43V1C5S3sr0)M^mJIZjh3DCAA?-=v{)Lxqpunm3kSinmlkdib(IHdc\"!Y^]\[ZYXQuUTMRQJImG/KJIHG@d>&<;:9>=6Z498165.-Q10/.'&J*)(!g}C0 From ed560ee2ca614a7042278693536f4b43265345da Mon Sep 17 00:00:00 2001 From: "Warren A. Kalolo" Date: Mon, 20 Jul 2020 04:47:56 +0300 Subject: [PATCH 08/25] Added Quorum and updated Qsharp (#771) --- README.md | 4 +++- q/qsharp.qs | 9 +++++++++ q/qsharp/Driver.cs | 19 ------------------- q/qsharp/qsharp.qs | 10 ---------- q/quorum.quorum | 1 + 5 files changed, 13 insertions(+), 30 deletions(-) create mode 100644 q/qsharp.qs delete mode 100755 q/qsharp/Driver.cs delete mode 100755 q/qsharp/qsharp.qs create mode 100644 q/quorum.quorum diff --git a/README.md b/README.md index f9b78b8a..4932a9f8 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (664 total) +## Languages (667 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -496,10 +496,12 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Qbasic](q/Qbasic.bas) * [Qcl](q/qcl.qcl) * [Qore](q/qore.q) +* [Qsharp](q/qsharp.qs) * [Qu](q/qu.qu) * [Quakec](q/QuakeC.qc) * [Quartzcomposer](q/QuartzComposer.qtz) * [Qugord](q/qugord.qugord) +* [Quorum](q/quorum.quorum) * [Qwerty](q/qwerty.qwerty) * [R](r/R.R) * [Racket](r/racket.rkt) diff --git a/q/qsharp.qs b/q/qsharp.qs new file mode 100644 index 00000000..3a77f226 --- /dev/null +++ b/q/qsharp.qs @@ -0,0 +1,9 @@ +namespace Quantum.HelloWorld { + open Microsoft.Quantum.Canon; + open Microsoft.Quantum.Intrinsic; + + + operation HelloWorld() : Unit { + Message("Hello World"); + } +} diff --git a/q/qsharp/Driver.cs b/q/qsharp/Driver.cs deleted file mode 100755 index 8f9445e7..00000000 --- a/q/qsharp/Driver.cs +++ /dev/null @@ -1,19 +0,0 @@ -using Microsoft.Quantum.Simulation.Simulators; - -namespace Quantum.HelloWorld -{ - class Driver - { - static void Main(string[] args) - { - using (var sim = new QuantumSimulator()) - { - var res = HelloWorld.Run(sim).Result; - System.Console.WriteLine( - $"{res}"); - } - System.Console.WriteLine("Press any key to continue..."); - System.Console.ReadKey(); - } - } -} \ No newline at end of file diff --git a/q/qsharp/qsharp.qs b/q/qsharp/qsharp.qs deleted file mode 100755 index 8485a481..00000000 --- a/q/qsharp/qsharp.qs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Quantum.HelloWorld -{ - operation HelloWorld () : (String) - { - body - { - return ("Hello World"); - } - } -} diff --git a/q/quorum.quorum b/q/quorum.quorum new file mode 100644 index 00000000..e837e493 --- /dev/null +++ b/q/quorum.quorum @@ -0,0 +1 @@ +output "Hello World" From 93b7a2d31a7643e6786b392c19b9613b4e4ad4e4 Mon Sep 17 00:00:00 2001 From: "Warren A. Kalolo" Date: Mon, 20 Jul 2020 14:00:24 +0300 Subject: [PATCH 09/25] Added React360 (#772) --- README.md | 3 ++- r/react360.js | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 r/react360.js diff --git a/README.md b/README.md index 4932a9f8..e0e8c6f4 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (667 total) +## Languages (668 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -508,6 +508,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Radixal](r/radixal.radixal) * [Ratfor](r/ratfor.ratfor) * [React](r/react.js) +* [React360](r/react360.js) * [Readlink](r/readlink.readlink) * [Realbasic](r/realbasic.realbasic) * [Reason](r/reason.re) diff --git a/r/react360.js b/r/react360.js new file mode 100644 index 00000000..3d5be7d0 --- /dev/null +++ b/r/react360.js @@ -0,0 +1,36 @@ +import React from "react"; +import { AppRegistry, Text, View, StyleSheet } from "react-360"; + +export default class hello_world extends React.Component { + render() { + return ( + + + Hello World + + + ); + } +} + +const styles = StyleSheet.create({ + panel: { + // Fill the entire surface + width: 1000, + height: 600, + backgroundColor: "rgba(255, 255, 255, 0.4)", + justifyContent: "center", + alignItems: "center", + }, + greetingBox: { + padding: 20, + backgroundColor: "#000000", + borderColor: "#639dda", + borderWidth: 2, + }, + greeting: { + fontSize: 30, + }, +}); + +AppRegistry.registerComponent("hello_world", () => hello_world); From f9c778349a436b02abc9e4330bbaa0d1eb35cad2 Mon Sep 17 00:00:00 2001 From: Antoine James Tournepiche <26577763+AntoineJT@users.noreply.github.com> Date: Tue, 21 Jul 2020 03:50:52 +0200 Subject: [PATCH 10/25] Improve C++ example (#774) --- c/c++.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/c/c++.cpp b/c/c++.cpp index 6ec7ffa8..f67b8157 100755 --- a/c/c++.cpp +++ b/c/c++.cpp @@ -1,8 +1,6 @@ #include -using namespace std; - int main() { - cout << "Hello World\n"; + std::cout << "Hello World" << std::endl; } From 7922f5f682d95ee8fa06df94a994c1ef1a5ab62a Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Tue, 21 Jul 2020 13:53:49 +1200 Subject: [PATCH 11/25] Revert #737 Signed-off-by: Richie Bendall --- README.md | 4 +--- c/c++98.cpp | 9 --------- c/c90.c | 7 ------- 3 files changed, 1 insertion(+), 19 deletions(-) delete mode 100644 c/c++98.cpp delete mode 100644 c/c90.c diff --git a/README.md b/README.md index e0e8c6f4..5a22dea4 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (668 total) +## Languages (666 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -153,9 +153,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Byter](b/byter.byter) * [Locomotive Basic](b/locomotive-basic.b) * [C++](c/c%2B%2B.cpp) -* [C++98](c/c%2B%2B98.cpp) * [C](c/c.c) -* [C90](c/c90.c) * [Caml](c/caml.ml) * [Cardinal](c/cardinal.cardinal) * [Casio Basic](c/Casio%20BASIC) diff --git a/c/c++98.cpp b/c/c++98.cpp deleted file mode 100644 index 21cd7d3e..00000000 --- a/c/c++98.cpp +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include - -int main(int argc, char** argv) -{ - cout << "Hello World" << endl; - getch(); - return 0; -} diff --git a/c/c90.c b/c/c90.c deleted file mode 100644 index 191b629e..00000000 --- a/c/c90.c +++ /dev/null @@ -1,7 +0,0 @@ -#include - -int main(int argc, char** argv) -{ - printf("Hello World\n"); - return 0; -} From 15116792eb936582c7aab273ac3df71f122e541a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferhat=20Ge=C3=A7do=C4=9Fan?= <54369961+ferhatgec@users.noreply.github.com> Date: Wed, 22 Jul 2020 07:21:20 +0300 Subject: [PATCH 12/25] Added FreeBrain and FlaScript (#775) --- README.md | 4 +++- f/flascript.fls | 4 ++++ f/freebrain.frbr | 13 +++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 f/flascript.fls create mode 100644 f/freebrain.frbr diff --git a/README.md b/README.md index 5a22dea4..187c004d 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (666 total) +## Languages (668 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -253,6 +253,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Fim++](f/fim%2B%2B.fimpp) * [Fish](f/fish.fish) * [Fjoelnir](f/fjoelnir.fjo) +* [FlaScript](f/flascript.fls) * [Flask](f/flask.py) * [Fob](f/fob.fob) * [Focal](f/focal.fc) @@ -265,6 +266,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Fortran77](f/fortran77.f77) * [Fourier](f/fourier.fourier) * [Fractran++](f/fractran%2B%2B.fpp) +* [FreeBrain](f/freebrain.frbr) * [Frink](f/frink.frink) * [Fsharp](f/fsharp.fs) * [Fstar](f/fstar.fst) diff --git a/f/flascript.fls b/f/flascript.fls new file mode 100644 index 00000000..a00dade5 --- /dev/null +++ b/f/flascript.fls @@ -0,0 +1,4 @@ +main() -> main { +print(string) -> "Hello World" +print(newline) +} diff --git a/f/freebrain.frbr b/f/freebrain.frbr new file mode 100644 index 00000000..5e760c2e --- /dev/null +++ b/f/freebrain.frbr @@ -0,0 +1,13 @@ +!->:>_^>~++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++<^_<: +!->:>_^>~+++++++++++++++++++++++++++++++++<^_<: +[!->:>_^> ? <^_<:] ?* (~++++++++++++++++++++++++++++++++++++++++++++++++++) *? !->:>_^>(~++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++)<*>(~++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++)<^_<: From 1ec54fc082bfaa4530d54c67343d35d574d30052 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Thu, 23 Jul 2020 18:31:00 +0900 Subject: [PATCH 13/25] =?UTF-8?q?Added=20=E3=81=B2=E3=81=BE=E3=82=8F?= =?UTF-8?q?=E3=82=8A=20(#776)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- #/ひまわり.hmw | 1 + README.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 #/ひまわり.hmw diff --git a/#/ひまわり.hmw b/#/ひまわり.hmw new file mode 100644 index 00000000..f50c6cf9 --- /dev/null +++ b/#/ひまわり.hmw @@ -0,0 +1 @@ +「Hello World」と、表示。 diff --git a/README.md b/README.md index 187c004d..4c5492c4 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (668 total) +## Languages (669 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -25,6 +25,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Μλ](%23/%CE%BC%CE%BB) * [قلب](%23/%D9%82%D9%84%D8%A8) * [なでしこ](%23/%E3%81%AA%E3%81%A7%E3%81%97%E3%81%93.nako) +* [ひまわり](%23%2F%E3%81%B2%E3%81%BE%E3%82%8F%E3%82%8A.hmw) * [文言](%23/%E6%96%87%E8%A8%80.wy) * [易语言](%23/%E6%98%93%E8%AF%AD%E8%A8%80.e) * [A++](a/a%2B%2B) From b3d07b41587e774fd4b4a2fea0f69fd5e06c64fc Mon Sep 17 00:00:00 2001 From: "Warren A. Kalolo" Date: Sun, 26 Jul 2020 05:35:40 +0300 Subject: [PATCH 14/25] Fixed Ada file extension (#777) --- README.md | 2 +- a/{ada.ada => ada.adb} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename a/{ada.ada => ada.adb} (100%) mode change 100755 => 100644 diff --git a/README.md b/README.md index 4c5492c4..985f5a79 100755 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Actionscript2](a/actionscript2.as) * [Actionscript3](a/actionscript3.as) * [Actionscript Flashmx](a/actionscript_flashmx.as) -* [Ada](a/ada.ada) +* [Ada](a/ada.adb) * [Advpl](a/advpl) * [Aeolbonn](a/Aeolbonn.aeo) * [Aeolbonn](a/aeolbonn.aeolbonn) diff --git a/a/ada.ada b/a/ada.adb old mode 100755 new mode 100644 similarity index 100% rename from a/ada.ada rename to a/ada.adb From 6543407ed36f4fc5a6310222d24bc90d34ff1045 Mon Sep 17 00:00:00 2001 From: "Warren A. Kalolo" Date: Wed, 29 Jul 2020 09:14:49 +0300 Subject: [PATCH 15/25] Improve ATS example (#778) Co-authored-by: Richie Bendall --- a/ATS2.dats | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/a/ATS2.dats b/a/ATS2.dats index 4add1e9c..cf4faefb 100644 --- a/a/ATS2.dats +++ b/a/ATS2.dats @@ -1,4 +1 @@ -val _ = - print ("Hello world\n") - -implement main0 () = () +implement main0 () = println! "Hello World" From 8cedb73e9a5dabbebeffd396d940eb5174830bb5 Mon Sep 17 00:00:00 2001 From: iyxan <31884435+Iyxan23@users.noreply.github.com> Date: Fri, 7 Aug 2020 17:30:30 +0700 Subject: [PATCH 16/25] Added BAIK (#781) --- README.md | 1 + b/BAIK.ina | 1 + 2 files changed, 2 insertions(+) create mode 100644 b/BAIK.ina diff --git a/README.md b/README.md index 985f5a79..18ef53f9 100755 --- a/README.md +++ b/README.md @@ -117,6 +117,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Awful](a/awful.yuk) * [Awk](a/awk.awk) * [B](b/B.b) +* [BAIK](b/baik.ina) * [Ballerina](b/ballerina.bal) * [Bash](b/bash.bash) * [Basic](b/basic.bas) diff --git a/b/BAIK.ina b/b/BAIK.ina new file mode 100644 index 00000000..01e4c2d8 --- /dev/null +++ b/b/BAIK.ina @@ -0,0 +1 @@ +tulis "Hello World" From 824e21bc807bed0276db254ea6d82baed4686260 Mon Sep 17 00:00:00 2001 From: Sven <69042800+Svn-Sp@users.noreply.github.com> Date: Fri, 7 Aug 2020 13:43:34 +0200 Subject: [PATCH 17/25] Added Basic-256 (#780) Co-authored-by: Svn-Sp --- README.md | 9 +++++---- b/basic-256.kbs | 1 + 2 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 b/basic-256.kbs diff --git a/README.md b/README.md index 18ef53f9..29b6f43c 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contributing to the project! -## Languages (669 total) +## Languages (670 total) * [05Ab1E](%23/05AB1E) * [0815](%23/0815.0815) @@ -25,7 +25,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Μλ](%23/%CE%BC%CE%BB) * [قلب](%23/%D9%82%D9%84%D8%A8) * [なでしこ](%23/%E3%81%AA%E3%81%A7%E3%81%97%E3%81%93.nako) -* [ひまわり](%23%2F%E3%81%B2%E3%81%BE%E3%82%8F%E3%82%8A.hmw) +* [ひまわり](%23/%E3%81%B2%E3%81%BE%E3%82%8F%E3%82%8A.hmw) * [文言](%23/%E6%96%87%E8%A8%80.wy) * [易语言](%23/%E6%98%93%E8%AF%AD%E8%A8%80.e) * [A++](a/a%2B%2B) @@ -120,6 +120,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [BAIK](b/baik.ina) * [Ballerina](b/ballerina.bal) * [Bash](b/bash.bash) +* [Basic 256](b/basic-256.kbs) * [Basic](b/basic.bas) * [Batch](b/batch.bat) * [Batch](b/batch.cmd) @@ -255,7 +256,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Fim++](f/fim%2B%2B.fimpp) * [Fish](f/fish.fish) * [Fjoelnir](f/fjoelnir.fjo) -* [FlaScript](f/flascript.fls) +* [Flascript](f/flascript.fls) * [Flask](f/flask.py) * [Fob](f/fob.fob) * [Focal](f/focal.fc) @@ -268,7 +269,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Fortran77](f/fortran77.f77) * [Fourier](f/fourier.fourier) * [Fractran++](f/fractran%2B%2B.fpp) -* [FreeBrain](f/freebrain.frbr) +* [Freebrain](f/freebrain.frbr) * [Frink](f/frink.frink) * [Fsharp](f/fsharp.fs) * [Fstar](f/fstar.fst) diff --git a/b/basic-256.kbs b/b/basic-256.kbs new file mode 100644 index 00000000..56c7347b --- /dev/null +++ b/b/basic-256.kbs @@ -0,0 +1 @@ +Print "Hello World" From 6779dc0167d06ff40c701c4644f602976425dc03 Mon Sep 17 00:00:00 2001 From: kompowiec2 Date: Fri, 7 Aug 2020 10:47:04 -0100 Subject: [PATCH 18/25] Added CBOT (#779) Co-authored-by: Richie Bendall --- README.md | 1 + c/cbot.txt | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 c/cbot.txt diff --git a/README.md b/README.md index 29b6f43c..12a3ab7f 100755 --- a/README.md +++ b/README.md @@ -161,6 +161,7 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib * [Cardinal](c/cardinal.cardinal) * [Casio Basic](c/Casio%20BASIC) * [Cat](c/cat.cat) +* [Cbot](c/cbot.txt) * [Cduce](c/cduce.cduce) * [Centura](c/centura.centura) * [Ceylon](c/ceylon.ceylon) diff --git a/c/cbot.txt b/c/cbot.txt new file mode 100644 index 00000000..6ee6a30e --- /dev/null +++ b/c/cbot.txt @@ -0,0 +1,6 @@ +extern void object::New() +{ + +message("Hello World"); + +} From efb08855de672082142f107d97113baafaa4570c Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Thu, 13 Aug 2020 04:54:24 +1200 Subject: [PATCH 19/25] Update and rename b/locomotive-basic.b to l/locomotive-basic.b --- b/locomotive-basic.b | 2 -- l/locomotive-basic.b | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 b/locomotive-basic.b create mode 100644 l/locomotive-basic.b diff --git a/b/locomotive-basic.b b/b/locomotive-basic.b deleted file mode 100644 index ad6862f7..00000000 --- a/b/locomotive-basic.b +++ /dev/null @@ -1,2 +0,0 @@ -10 print "Hello, World" -run diff --git a/l/locomotive-basic.b b/l/locomotive-basic.b new file mode 100644 index 00000000..938af536 --- /dev/null +++ b/l/locomotive-basic.b @@ -0,0 +1,2 @@ +10 print "Hello World" +run From 5f66a4ddd866ab47d15fb428e4a95e43591acda3 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Sun, 16 Aug 2020 21:57:45 +1200 Subject: [PATCH 20/25] Log `Hello World` instead of `Hello World!` --- b/binaryfuck.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b/binaryfuck.bf b/b/binaryfuck.bf index 2f241b40..2e1adc28 100644 --- a/b/binaryfuck.bf +++ b/b/binaryfuck.bf @@ -5,4 +5,4 @@ 000 000 000 100 011 011 000 000 100 010 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 100 010 100 000 000 000 100 001 001 001 001 001 001 100 001 001 001 001 001 001 -001 001 100 011 011 000 100 +001 001 100 From 097c05bc68b2cabc07ac62c4efcdf8750afaa8f9 Mon Sep 17 00:00:00 2001 From: Amirul Asyraf <58986949+asyraf-labs@users.noreply.github.com> Date: Tue, 18 Aug 2020 08:08:54 +0800 Subject: [PATCH 21/25] Added Malay translation (#782) --- #/~Malay.ext | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 #/~Malay.ext diff --git a/#/~Malay.ext b/#/~Malay.ext new file mode 100644 index 00000000..8664a4db --- /dev/null +++ b/#/~Malay.ext @@ -0,0 +1,2 @@ +Tunjukkan perkataan "Hello World" dan garisan baru +Program tamat From 8436f99074b4f9d215994d553c80fb260ec4e148 Mon Sep 17 00:00:00 2001 From: Nitish Kafle <47726833+kaflenitish@users.noreply.github.com> Date: Mon, 24 Aug 2020 23:20:25 -0400 Subject: [PATCH 22/25] Added Sanskrit (#783) --- #/~Sanskrit.ext | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 #/~Sanskrit.ext diff --git a/#/~Sanskrit.ext b/#/~Sanskrit.ext new file mode 100644 index 00000000..86af6bc1 --- /dev/null +++ b/#/~Sanskrit.ext @@ -0,0 +1,2 @@ +प्रदर्शक "नमस्कार विश्व" समायोग नव पङ्क्ति +विधि विराम \ No newline at end of file From ed43f8255d70640eeee1498b8c35c6eba0aec790 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 26 Aug 2020 02:15:55 +1200 Subject: [PATCH 23/25] Update asciidots.ascii --- a/asciidots.ascii | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a/asciidots.ascii b/a/asciidots.ascii index 34d758d3..5ba25729 100644 --- a/a/asciidots.ascii +++ b/a/asciidots.ascii @@ -1 +1 @@ -.-$"Hello, World" \ No newline at end of file +.-$"Hello World" From a63aaaddcfe44a75882081d6f584daf896777ce1 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 26 Aug 2020 04:13:18 +1200 Subject: [PATCH 24/25] Added LotusScript Fixes #784 Co-Authored-By: icositetrachoron-programmer --- l/lotusscript.lss | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 l/lotusscript.lss diff --git a/l/lotusscript.lss b/l/lotusscript.lss new file mode 100644 index 00000000..30eb3ca8 --- /dev/null +++ b/l/lotusscript.lss @@ -0,0 +1,3 @@ +Sub Initialize + Print "Hello World" +End Sub From 137834d42c842980620ac3237f049447eaba2e50 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Sat, 29 Aug 2020 00:11:03 +1200 Subject: [PATCH 25/25] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 12a3ab7f..0e113a43 100755 --- a/README.md +++ b/README.md @@ -687,4 +687,4 @@ Make sure to see [CONTRIBUTING.md](/CONTRIBUTING.md) for instructions on contrib ## Related - [FizBuzz](https://github.com/zenware/FizzBuzz) -- [The Hello World Collection](https://helloworldcollection.github.io/). +- [The Hello World Collection](https://helloworldcollection.github.io/)