Merge branch 'master' into add-erlang-escript
This commit is contained in:
@@ -388,6 +388,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
|
|||||||
* [Powershell](p/powershell.ps1)
|
* [Powershell](p/powershell.ps1)
|
||||||
* [Processing](p/processing.pde)
|
* [Processing](p/processing.pde)
|
||||||
* [Prolog](p/prolog.pro)
|
* [Prolog](p/prolog.pro)
|
||||||
|
* [Pure Data](p/pure_data.pd)
|
||||||
* [Purebasic](p/purebasic.pb)
|
* [Purebasic](p/purebasic.pb)
|
||||||
* [Purescript](p/purescript.purs)
|
* [Purescript](p/purescript.purs)
|
||||||
* [Pyret](p/pyret.arr)
|
* [Pyret](p/pyret.arr)
|
||||||
@@ -423,6 +424,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
|
|||||||
* [Sacred](s/sacred.sacred)
|
* [Sacred](s/sacred.sacred)
|
||||||
* [Sal](s/sal.s)
|
* [Sal](s/sal.s)
|
||||||
* [Sas](s/sas.sas)
|
* [Sas](s/sas.sas)
|
||||||
|
* [Sass](s/sass.sass)
|
||||||
* [Sather](s/sather.sa)
|
* [Sather](s/sather.sa)
|
||||||
* [Scala](s/scala.scala)
|
* [Scala](s/scala.scala)
|
||||||
* [Scheme](s/scheme.scm)
|
* [Scheme](s/scheme.scm)
|
||||||
|
|||||||
6
c/cuneiform.cfl
Normal file
6
c/cuneiform.cfl
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
def greet() -> <out : Str>
|
||||||
|
in Bash *{
|
||||||
|
out="Hello world"
|
||||||
|
}*
|
||||||
|
|
||||||
|
( greet()|out );
|
||||||
3
f/fstar.fst
Normal file
3
f/fstar.fst
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
module Hello
|
||||||
|
|
||||||
|
let main = FStar.IO.print_string "Hello World\n"
|
||||||
8
g/Gui4Cli
Normal file
8
g/Gui4Cli
Normal 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
|
||||||
4
g/go.go
4
g/go.go
@@ -1,7 +1,5 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
fmt.Printf("Hello, 世界\n")
|
println("Hello, World")
|
||||||
}
|
}
|
||||||
|
|||||||
0
list_langs.py
Normal file → Executable file
0
list_langs.py
Normal file → Executable file
4
p/parser.p
Normal file
4
p/parser.p
Normal 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
4
p/pure_data.pd
Normal 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
3
r/ruota.ruo
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Ruota https://github.com/Ruota-Lang/Ruota
|
||||||
|
|
||||||
|
printl("Hello, World!")
|
||||||
3
s/Scss.scss
Normal file
3
s/Scss.scss
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
body::before {
|
||||||
|
content: "Hello World!"
|
||||||
|
}
|
||||||
2
s/sass.sass
Normal file
2
s/sass.sass
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
body::before
|
||||||
|
content: "Hello World!"
|
||||||
Reference in New Issue
Block a user