New language: Thue

This commit is contained in:
Radon Rosborough 2020-07-17 19:45:39 -06:00
parent 2402e736d3
commit a79f3acba3
2 changed files with 19 additions and 0 deletions

View File

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

View File

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