diff --git a/README.md b/README.md index 56832ef4..c724cf5c 100644 --- a/README.md +++ b/README.md @@ -388,6 +388,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) @@ -423,6 +424,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) 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!") 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 ); 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 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 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 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") } diff --git a/list_langs.py b/list_langs.py old mode 100644 new mode 100755 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] 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; 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!") 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!" +} 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!"