New language: APL
This commit is contained in:
parent
e89e530c89
commit
c2adccae3b
|
@ -61,6 +61,14 @@ end Main;
|
||||||
main: "main.alg",
|
main: "main.alg",
|
||||||
run: "a68g main.alg",
|
run: "a68g main.alg",
|
||||||
template: `print(("Hello, world!",new line))
|
template: `print(("Hello, world!",new line))
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
apl: {
|
||||||
|
name: "APL",
|
||||||
|
repl: "apl",
|
||||||
|
main: "main.apl",
|
||||||
|
run: "apl -f main.apl",
|
||||||
|
template: `'Hello, world!'
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
arm: {
|
arm: {
|
||||||
|
|
|
@ -12,6 +12,9 @@ gnat
|
||||||
# Algol
|
# Algol
|
||||||
algol68g
|
algol68g
|
||||||
|
|
||||||
|
# APL
|
||||||
|
libtinfo5
|
||||||
|
|
||||||
# ARM
|
# ARM
|
||||||
gcc-arm-linux-gnueabihf
|
gcc-arm-linux-gnueabihf
|
||||||
qemu-user-static
|
qemu-user-static
|
||||||
|
|
|
@ -31,6 +31,11 @@ mv linux/ada_language_server /usr/bin/ada_language_server
|
||||||
mv linux/*.so* /usr/lib/x86_64-linux-gnu/
|
mv linux/*.so* /usr/lib/x86_64-linux-gnu/
|
||||||
rm -rf linux linux-latest.tar.gz
|
rm -rf linux linux-latest.tar.gz
|
||||||
|
|
||||||
|
# APL
|
||||||
|
wget -nv ftp://ftp.gnu.org/gnu/apl/apl_1.8-1_amd64.deb
|
||||||
|
dpkg -i apl_*_amd64.deb
|
||||||
|
rm apl_*_amd64.deb
|
||||||
|
|
||||||
# Clojure
|
# Clojure
|
||||||
wget -nv https://github.com/snoe/clojure-lsp/releases/download/release-20200629T153107/clojure-lsp
|
wget -nv https://github.com/snoe/clojure-lsp/releases/download/release-20200629T153107/clojure-lsp
|
||||||
chmod +x clojure-lsp
|
chmod +x clojure-lsp
|
||||||
|
|
Loading…
Reference in New Issue