[#24] New language: Grass
This commit is contained in:
parent
d3a991a132
commit
46f8716f46
|
@ -1308,6 +1308,14 @@ func main() {
|
||||||
main: "main.gs",
|
main: "main.gs",
|
||||||
run: "golfscript main.gs",
|
run: "golfscript main.gs",
|
||||||
template: `'Hello, world!'
|
template: `'Hello, world!'
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
grass: {
|
||||||
|
name: "Grass",
|
||||||
|
main: "main.grass",
|
||||||
|
run: "grass < main.grass",
|
||||||
|
hello: `w`,
|
||||||
|
template: `wWWwwww
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
groovy: {
|
groovy: {
|
||||||
|
|
|
@ -165,6 +165,10 @@ rm -rf go
|
||||||
wget -nv http://www.golfscript.com/golfscript/golfscript.rb -O /usr/local/bin/golfscript
|
wget -nv http://www.golfscript.com/golfscript/golfscript.rb -O /usr/local/bin/golfscript
|
||||||
chmod +x /usr/local/bin/golfscript
|
chmod +x /usr/local/bin/golfscript
|
||||||
|
|
||||||
|
# Grass
|
||||||
|
wget -nv http://www.blue.sky.or.jp/grass/grass.rb -O /usr/local/bin/grass
|
||||||
|
chmod +x /usr/local/bin/grass
|
||||||
|
|
||||||
# Haskell
|
# Haskell
|
||||||
curl -sSL https://get.haskellstack.org/ | sh
|
curl -sSL https://get.haskellstack.org/ | sh
|
||||||
wget -nv https://github.com/raxod502/riju-cdn/releases/download/brittany-0.12.1.1/brittany -O /usr/local/bin/brittany
|
wget -nv https://github.com/raxod502/riju-cdn/releases/download/brittany-0.12.1.1/brittany -O /usr/local/bin/brittany
|
||||||
|
|
Loading…
Reference in New Issue