[#24] New language: Ante (the systems language)

This commit is contained in:
Radon Rosborough 2020-09-27 14:40:02 -07:00
parent 16b62fe340
commit dc33328746
2 changed files with 13 additions and 0 deletions

View File

@ -139,6 +139,15 @@ println (* 123 234)`,
main: "main.alg",
run: "a68g main.alg",
template: `print(("Hello, world!",new line))
`,
},
ante: {
aliases: ["an"],
name: "Ante",
main: "main.an",
compile: "ante main.an",
run: "./main",
template: `puts("Hello, world!".cStr)
`,
},
antecards: {

View File

@ -33,6 +33,10 @@ mv linux/ada_language_server /usr/local/bin/ada_language_server
mv linux/*.so* /usr/lib/x86_64-linux-gnu/
rm -rf linux linux-latest.tar.gz
# Ante
wget -nv https://github.com/raxod502/riju-cdn/releases/download/ante-0.8.0-d2c43992e0c7a4c1942d5c097233f4f7638a1ee6/ante -O /usr/local/bin/ante
chmod +x /usr/local/bin/ante
# Ante (Cards)
wget -nv https://github.com/michaeldv/ante/raw/master/ante.rb -O /usr/local/bin/ante-cards
chmod +x /usr/local/bin/ante-cards