New language: GolfScript
This commit is contained in:
parent
fd16801ab0
commit
f35865a1ca
|
@ -707,6 +707,15 @@ import "fmt"
|
||||||
func main() {
|
func main() {
|
||||||
fmt.Println("Hello, world!")
|
fmt.Println("Hello, world!")
|
||||||
}
|
}
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
golfscript: {
|
||||||
|
aliases: ["gs", "golf"],
|
||||||
|
name: "GolfScript",
|
||||||
|
monacoLang: "plaintext",
|
||||||
|
main: "main.gs",
|
||||||
|
run: "golfscript main.gs",
|
||||||
|
template: `'Hello, world!'
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
groovy: {
|
groovy: {
|
||||||
|
|
|
@ -79,6 +79,10 @@ go get golang.org/x/tools/gopls@latest
|
||||||
mv go/bin/gopls /usr/bin/gopls
|
mv go/bin/gopls /usr/bin/gopls
|
||||||
rm -rf go
|
rm -rf go
|
||||||
|
|
||||||
|
# GolfScript
|
||||||
|
wget -nv http://www.golfscript.com/golfscript/golfscript.rb -O /usr/bin/golfscript
|
||||||
|
chmod +x /usr/bin/golfscript
|
||||||
|
|
||||||
# Haskell
|
# Haskell
|
||||||
wget -nv https://get.haskellstack.org/stable/linux-x86_64-static.tar.gz
|
wget -nv https://get.haskellstack.org/stable/linux-x86_64-static.tar.gz
|
||||||
tar -xf linux-x86_64-static.tar.gz
|
tar -xf linux-x86_64-static.tar.gz
|
||||||
|
|
Loading…
Reference in New Issue