New language: Thue
This commit is contained in:
parent
2402e736d3
commit
a79f3acba3
|
@ -1559,6 +1559,15 @@ END
|
|||
compile: "pandoc main.textile -o main.html",
|
||||
run: "prettier --no-config main.html",
|
||||
template: `Hello, world!
|
||||
`,
|
||||
},
|
||||
thue: {
|
||||
name: "Thue",
|
||||
main: "main.thue",
|
||||
run: "thue main.thue",
|
||||
template: `a::=~Hello, world!
|
||||
::=
|
||||
a
|
||||
`,
|
||||
},
|
||||
tikiwiki: {
|
||||
|
|
|
@ -46,5 +46,15 @@ git clone https://github.com/bipinu/malbolge.git
|
|||
clang malbolge/malbolge.c -o /usr/bin/malbolge
|
||||
rm -rf malbolge
|
||||
|
||||
# Thue
|
||||
wget -nv https://catseye.tc/distfiles/thue-1.5-2015.0827.zip
|
||||
unzip thue-*.zip
|
||||
rm thue-*.zip
|
||||
pushd thue-* >/dev/null
|
||||
./build.sh
|
||||
mv bin/thue /usr/bin/thue
|
||||
popd >/dev/null
|
||||
rm -rf thue-*
|
||||
|
||||
popd >/dev/null
|
||||
rm "$0"
|
||||
|
|
Loading…
Reference in New Issue