From d40b44509176a5d6c41f6dacf47f7e76b2a069fa Mon Sep 17 00:00:00 2001 From: Nikolay Date: Mon, 4 Jun 2018 11:43:59 -0700 Subject: [PATCH 01/11] "Hello, World!" in Parser added --- p/parser.p | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 p/parser.p diff --git a/p/parser.p b/p/parser.p new file mode 100644 index 00000000..3e3c3379 --- /dev/null +++ b/p/parser.p @@ -0,0 +1,4 @@ +@main[] + ^rem{Will print "Hello, World!" when run as CGI script} + $hello[Hello, World!] + $result[$hello] From 29269ee96803d0ae67ab04fd1837d6f489b45ff7 Mon Sep 17 00:00:00 2001 From: Jorgen Brandt Date: Mon, 4 Jun 2018 21:09:18 +0200 Subject: [PATCH 02/11] Add Cuneiform hello-world --- c/cuneiform.cfl | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 c/cuneiform.cfl diff --git a/c/cuneiform.cfl b/c/cuneiform.cfl new file mode 100644 index 00000000..a88216e0 --- /dev/null +++ b/c/cuneiform.cfl @@ -0,0 +1,6 @@ +def greet() -> +in Bash *{ + out="Hello world" +}* + +( greet()|out ); From 61c4332bff08aa5cf1c349c8a6b524af32e79b63 Mon Sep 17 00:00:00 2001 From: Greg Weisbrod Date: Thu, 7 Jun 2018 07:18:26 -0400 Subject: [PATCH 03/11] Add Pure Data (see https://puredata.info) --- README.md | 11 +++++++---- p/pure_data.pd | 4 ++++ 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 p/pure_data.pd diff --git a/README.md b/README.md index c0957b56..765476e4 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Thanks to everyone who continues to contribute, new languages are created every Make sure to see CONTRIBUTING.md for instructions on contributing to the project! -Spin-Off project smartly suggested and implemented by [@zenware](https://github.com/zenware): +Spin-Off project smartly suggested and implemented by [@zenware](https://github.com/zenware): Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-world](https://github.com/leachim6/hello-world). * [Hello Html](e/elm.elm) @@ -71,6 +71,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Assembler 8048 Videopac](a/assembler_8048_videopac.asm) * [Assembler Arm](a/assembler_arm.s) * [Assembler Atari2600](a/assembler_atari2600.asm) +* [Assembler Bootsect](a/assembler_bootsect.asm) * [Assembler Dcpu16](a/assembler_DCPU16.asm) * [Assembler Fasm Dos](a/assembler_fasm_dos.asm) * [Assembler Hla](a/assembler_hla.hla) @@ -93,7 +94,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Assembler Z80 Knightos](a/assembler_z80_knightos.asm) * [Assembler Z80 Ti83Calculator](a/assembler_z80_ti83calculator.asm) * [Assembler Z80 Zxspectrum](a/assembler_z80_zxspectrum.asm) -* [Attache](a/Attache.@) +* [Attache](a/Attache.%40) * [Autohotkey](a/autohotkey.ahk) * [Autoit](a/autoit.au3) * [Awful](a/awful.yuk) @@ -109,12 +110,14 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Befunge](b/befunge.be) * [Bennugd](b/BennuGD) * [Beta](b/beta.bet) +* [Birl](b/BIRL.c) * [Bit](b/BIT.bit) * [Bitbitjump](b/BitBitJump.bbj) * [Blackrum](b/BlackRum.br) * [Blc](b/BLC.Blc) * [Blitz3D](b/blitz3d.bb) * [Blub](b/blub.blub) +* [Bolgefuck](b/bolgefuck.bf) * [Boo](b/boo.boo) * [Brainfuck 2D](b/brainfuck-2d.bf2d) * [Brainfuck](b/brainfuck.bf) @@ -291,7 +294,6 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Livescript](l/livescript.ls) * [Llvm](l/llvm.ll) * [Lnusp](l/LNUSP.lnusp) -* [Logical](l/logical.logical) * [Logo](l/logo.lg) * [Lola](l/LOLA.lola) * [Lolcode](l/lolcode.lol) @@ -385,6 +387,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Powershell](p/powershell.ps1) * [Processing](p/processing.pde) * [Prolog](p/prolog.pro) +* [Pure Data](p/pure_data.pd) * [Purebasic](p/purebasic.pb) * [Purescript](p/purescript.purs) * [Pyret](p/pyret.arr) @@ -522,7 +525,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Y](y/Y.y) * [Yaml](y/yaml.yaml) * [Yolang](y/yolang.yo) -* [YoptaScript](y/yoptascript.js) +* [Yoptascript](y/yoptascript.js) * [Zbd](z/zbd) * [Zepto](z/zepto.zp) * [Zetaplex](z/zetaplex.zeta) diff --git a/p/pure_data.pd b/p/pure_data.pd new file mode 100644 index 00000000..d1ac60c9 --- /dev/null +++ b/p/pure_data.pd @@ -0,0 +1,4 @@ +#N canvas 1029 457 450 300 10; +#X obj 127 132 print; +#X msg 127 86 Hello world!; +#X connect 1 0 0 0; From 74a50fa95ceb0e3ea52a20640bbee601769401a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=BE=E9=A1=BA=E5=90=8D=28Jarvis=29?= Date: Thu, 21 Jun 2018 17:39:15 +0800 Subject: [PATCH 04/11] Update go.go without `fmt` package, just pure println --- g/go.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/g/go.go b/g/go.go index 5510afe4..a135d6cb 100644 --- a/g/go.go +++ b/g/go.go @@ -1,7 +1,5 @@ package main -import "fmt" - func main() { - fmt.Printf("Hello, 世界\n") + println("Hello, World") } From 080f970ee84dc491e9b04d3ebf6655607f2deead Mon Sep 17 00:00:00 2001 From: Andrew Breza Date: Thu, 21 Jun 2018 10:18:56 -0400 Subject: [PATCH 05/11] Create Gui4Cli --- g/Gui4Cli | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 g/Gui4Cli diff --git a/g/Gui4Cli b/g/Gui4Cli new file mode 100644 index 00000000..e00888d9 --- /dev/null +++ b/g/Gui4Cli @@ -0,0 +1,8 @@ +G4C MyGui +Window 10 10 200 300 "My window" + +xOnLoad + GuiOpen MyGui + +xButton 10 10 100 20 "Hello World" + GuiQuit MyGui From 5237b1f0853a454294dabed4a56816f0f01b2de2 Mon Sep 17 00:00:00 2001 From: Akil Krishnan Date: Mon, 2 Jul 2018 02:55:28 -0500 Subject: [PATCH 06/11] Rename erlang_hw.erl to erlang.erl --- README.md | 14 ++++++++------ e/{erlang_hw.erl => erlang.erl} | 0 2 files changed, 8 insertions(+), 6 deletions(-) rename e/{erlang_hw.erl => erlang.erl} (100%) diff --git a/README.md b/README.md index c0957b56..6b944207 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Thanks to everyone who continues to contribute, new languages are created every Make sure to see CONTRIBUTING.md for instructions on contributing to the project! -Spin-Off project smartly suggested and implemented by [@zenware](https://github.com/zenware): +Spin-Off project smartly suggested and implemented by [@zenware](https://github.com/zenware): Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-world](https://github.com/leachim6/hello-world). * [Hello Html](e/elm.elm) @@ -22,7 +22,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [4Gl](%23/4gl.4gl) * [4Test](%23/4test) * [4Thdimension](%23/4thdimension.4dd) -* [~English](%23/%7EEnglish.ext) +* [~English](%23/~English.ext) * [Abap](a/abap.abap) * [Abc](a/abc.abc) * [Acidic](a/ACIDIC.acidic) @@ -71,6 +71,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Assembler 8048 Videopac](a/assembler_8048_videopac.asm) * [Assembler Arm](a/assembler_arm.s) * [Assembler Atari2600](a/assembler_atari2600.asm) +* [Assembler Bootsect](a/assembler_bootsect.asm) * [Assembler Dcpu16](a/assembler_DCPU16.asm) * [Assembler Fasm Dos](a/assembler_fasm_dos.asm) * [Assembler Hla](a/assembler_hla.hla) @@ -93,7 +94,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Assembler Z80 Knightos](a/assembler_z80_knightos.asm) * [Assembler Z80 Ti83Calculator](a/assembler_z80_ti83calculator.asm) * [Assembler Z80 Zxspectrum](a/assembler_z80_zxspectrum.asm) -* [Attache](a/Attache.@) +* [Attache](a/Attache.%40) * [Autohotkey](a/autohotkey.ahk) * [Autoit](a/autoit.au3) * [Awful](a/awful.yuk) @@ -109,12 +110,14 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Befunge](b/befunge.be) * [Bennugd](b/BennuGD) * [Beta](b/beta.bet) +* [Birl](b/BIRL.c) * [Bit](b/BIT.bit) * [Bitbitjump](b/BitBitJump.bbj) * [Blackrum](b/BlackRum.br) * [Blc](b/BLC.Blc) * [Blitz3D](b/blitz3d.bb) * [Blub](b/blub.blub) +* [Bolgefuck](b/bolgefuck.bf) * [Boo](b/boo.boo) * [Brainfuck 2D](b/brainfuck-2d.bf2d) * [Brainfuck](b/brainfuck.bf) @@ -190,7 +193,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Emojicode](e/emojicode.emojic) * [Emoticon](e/emoticon.emoticon) * [Eoool](e/EOOOL.eoool) -* [Erlang Hw](e/erlang_hw.erl) +* [Erlang](e/erlang.erl) * [Factor](f/factor.factor) * [Falcon](f/falcon.fal) * [False](f/false.f) @@ -291,7 +294,6 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Livescript](l/livescript.ls) * [Llvm](l/llvm.ll) * [Lnusp](l/LNUSP.lnusp) -* [Logical](l/logical.logical) * [Logo](l/logo.lg) * [Lola](l/LOLA.lola) * [Lolcode](l/lolcode.lol) @@ -522,7 +524,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Y](y/Y.y) * [Yaml](y/yaml.yaml) * [Yolang](y/yolang.yo) -* [YoptaScript](y/yoptascript.js) +* [Yoptascript](y/yoptascript.js) * [Zbd](z/zbd) * [Zepto](z/zepto.zp) * [Zetaplex](z/zetaplex.zeta) diff --git a/e/erlang_hw.erl b/e/erlang.erl similarity index 100% rename from e/erlang_hw.erl rename to e/erlang.erl From 4b7ec571897453b48ffd9b2a0e827751a8b81ffc Mon Sep 17 00:00:00 2001 From: vonaka Date: Wed, 4 Jul 2018 12:12:05 +0200 Subject: [PATCH 07/11] Add FStar example. --- f/fstar.fst | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 f/fstar.fst diff --git a/f/fstar.fst b/f/fstar.fst new file mode 100644 index 00000000..6abeec3c --- /dev/null +++ b/f/fstar.fst @@ -0,0 +1,3 @@ +module Hello + +let main = FStar.IO.print_string "Hello World\n" \ No newline at end of file From 0cdb2548d77fdd454343bb52d7fb11d7c1729e01 Mon Sep 17 00:00:00 2001 From: Arthur Guiot Date: Sat, 7 Jul 2018 18:56:14 +0200 Subject: [PATCH 08/11] Added Sass --- README.md | 13 ++++++++----- list_langs.py | 0 s/sass.sass | 2 ++ 3 files changed, 10 insertions(+), 5 deletions(-) mode change 100644 => 100755 list_langs.py create mode 100644 s/sass.sass diff --git a/README.md b/README.md index c0957b56..83840b80 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Thanks to everyone who continues to contribute, new languages are created every Make sure to see CONTRIBUTING.md for instructions on contributing to the project! -Spin-Off project smartly suggested and implemented by [@zenware](https://github.com/zenware): +Spin-Off project smartly suggested and implemented by [@zenware](https://github.com/zenware): Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-world](https://github.com/leachim6/hello-world). * [Hello Html](e/elm.elm) @@ -22,7 +22,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [4Gl](%23/4gl.4gl) * [4Test](%23/4test) * [4Thdimension](%23/4thdimension.4dd) -* [~English](%23/%7EEnglish.ext) +* [~English](%23/~English.ext) * [Abap](a/abap.abap) * [Abc](a/abc.abc) * [Acidic](a/ACIDIC.acidic) @@ -71,6 +71,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Assembler 8048 Videopac](a/assembler_8048_videopac.asm) * [Assembler Arm](a/assembler_arm.s) * [Assembler Atari2600](a/assembler_atari2600.asm) +* [Assembler Bootsect](a/assembler_bootsect.asm) * [Assembler Dcpu16](a/assembler_DCPU16.asm) * [Assembler Fasm Dos](a/assembler_fasm_dos.asm) * [Assembler Hla](a/assembler_hla.hla) @@ -93,7 +94,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Assembler Z80 Knightos](a/assembler_z80_knightos.asm) * [Assembler Z80 Ti83Calculator](a/assembler_z80_ti83calculator.asm) * [Assembler Z80 Zxspectrum](a/assembler_z80_zxspectrum.asm) -* [Attache](a/Attache.@) +* [Attache](a/Attache.%40) * [Autohotkey](a/autohotkey.ahk) * [Autoit](a/autoit.au3) * [Awful](a/awful.yuk) @@ -109,12 +110,14 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Befunge](b/befunge.be) * [Bennugd](b/BennuGD) * [Beta](b/beta.bet) +* [Birl](b/BIRL.c) * [Bit](b/BIT.bit) * [Bitbitjump](b/BitBitJump.bbj) * [Blackrum](b/BlackRum.br) * [Blc](b/BLC.Blc) * [Blitz3D](b/blitz3d.bb) * [Blub](b/blub.blub) +* [Bolgefuck](b/bolgefuck.bf) * [Boo](b/boo.boo) * [Brainfuck 2D](b/brainfuck-2d.bf2d) * [Brainfuck](b/brainfuck.bf) @@ -291,7 +294,6 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Livescript](l/livescript.ls) * [Llvm](l/llvm.ll) * [Lnusp](l/LNUSP.lnusp) -* [Logical](l/logical.logical) * [Logo](l/logo.lg) * [Lola](l/LOLA.lola) * [Lolcode](l/lolcode.lol) @@ -420,6 +422,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Sacred](s/sacred.sacred) * [Sal](s/sal.s) * [Sas](s/sas.sas) +* [Sass](s/sass.sass) * [Sather](s/sather.sa) * [Scala](s/scala.scala) * [Scheme](s/scheme.scm) @@ -522,7 +525,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Y](y/Y.y) * [Yaml](y/yaml.yaml) * [Yolang](y/yolang.yo) -* [YoptaScript](y/yoptascript.js) +* [Yoptascript](y/yoptascript.js) * [Zbd](z/zbd) * [Zepto](z/zepto.zp) * [Zetaplex](z/zetaplex.zeta) diff --git a/list_langs.py b/list_langs.py old mode 100644 new mode 100755 diff --git a/s/sass.sass b/s/sass.sass new file mode 100644 index 00000000..770a4b77 --- /dev/null +++ b/s/sass.sass @@ -0,0 +1,2 @@ +body::before + content: "Hello World!" From 73dfffd3d7b045c3e271f49fb2e3e14579b6477a Mon Sep 17 00:00:00 2001 From: Arthur Guiot Date: Sat, 7 Jul 2018 18:56:46 +0200 Subject: [PATCH 09/11] Added Scss --- s/Scss.scss | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 s/Scss.scss diff --git a/s/Scss.scss b/s/Scss.scss new file mode 100644 index 00000000..ad5ffcc4 --- /dev/null +++ b/s/Scss.scss @@ -0,0 +1,3 @@ +body::before { + content: "Hello World!" +} From 1f64893d07d116c6cd8e8fcc01b054aebc068487 Mon Sep 17 00:00:00 2001 From: Benjamin Park Date: Sun, 8 Jul 2018 16:09:09 -0400 Subject: [PATCH 10/11] Create ruota.ruo --- r/ruota.ruo | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 r/ruota.ruo diff --git a/r/ruota.ruo b/r/ruota.ruo new file mode 100644 index 00000000..fe78b9a6 --- /dev/null +++ b/r/ruota.ruo @@ -0,0 +1,3 @@ +# Ruota https://github.com/Ruota-Lang/Ruota + +printl("Hello, World!") From 323e983b7e0b492e7d81f9ba8ffcf6df55d0541c Mon Sep 17 00:00:00 2001 From: Drew Fink Date: Mon, 9 Jul 2018 22:17:11 +0200 Subject: [PATCH 11/11] Add Hello World in Arc Added Hello World in Arc, a terse dialect of Lisp created mainly for the Hacker News website. --- a/arc.arc | 1 + 1 file changed, 1 insertion(+) create mode 100644 a/arc.arc diff --git a/a/arc.arc b/a/arc.arc new file mode 100644 index 00000000..055975dc --- /dev/null +++ b/a/arc.arc @@ -0,0 +1 @@ +(prn "Hello, World!")