Merge branch 'master' into add-erlang-escript

This commit is contained in:
Mike Donaghy
2018-07-17 00:54:57 -05:00
committed by GitHub
13 changed files with 37 additions and 3 deletions

View File

@@ -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)

1
a/arc.arc Normal file
View File

@@ -0,0 +1 @@
(prn "Hello, World!")

6
c/cuneiform.cfl Normal file
View File

@@ -0,0 +1,6 @@
def greet() -> <out : Str>
in Bash *{
out="Hello world"
}*
( greet()|out );

3
f/fstar.fst Normal file
View File

@@ -0,0 +1,3 @@
module Hello
let main = FStar.IO.print_string "Hello World\n"

8
g/Gui4Cli Normal file
View File

@@ -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

View File

@@ -1,7 +1,5 @@
package main
import "fmt"
func main() {
fmt.Printf("Hello, 世界\n")
println("Hello, World")
}

0
list_langs.py Normal file → Executable file
View File

4
p/parser.p Normal file
View File

@@ -0,0 +1,4 @@
@main[]
^rem{Will print "Hello, World!" when run as CGI script}
$hello[Hello, World!]
$result[$hello]

4
p/pure_data.pd Normal file
View File

@@ -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;

3
r/ruota.ruo Normal file
View File

@@ -0,0 +1,3 @@
# Ruota https://github.com/Ruota-Lang/Ruota
printl("Hello, World!")

3
s/Scss.scss Normal file
View File

@@ -0,0 +1,3 @@
body::before {
content: "Hello World!"
}

2
s/sass.sass Normal file
View File

@@ -0,0 +1,2 @@
body::before
content: "Hello World!"