[#24] New language: PSeInt

This commit is contained in:
Radon Rosborough 2020-10-04 15:16:49 -07:00
parent aea38776d1
commit a88089cbd0
2 changed files with 17 additions and 0 deletions

View File

@ -2697,6 +2697,17 @@ main :-
template: `active proctype main() {
printf("Hello, world!\\n");
}
`,
},
pseint: {
aliases: ["psc"],
name: "PSeInt",
main: "main.psc",
run: "pseint --nouser main.psc",
hello: "¡Hola, mundo!",
template: `Proceso Main
Escribir "¡Hola, mundo!";
FinProceso
`,
},
pug: {

View File

@ -282,6 +282,12 @@ unzip PowerShellEditorServices.zip
mv PowerShellEditorServices /opt/powershell-editor-services
rm PowerShellEditorServices.zip
# PSeInt
wget -nv "$(curl -sSL "http://pseint.sourceforge.net/index.php?page=descargas.php&os=lnx" | grep -Eo 'http://[^"]+l64[^"]+\.tgz\?download')" -O pseint.tgz
tar -xf pseint.tgz
mv pseint/bin/pseint /usr/local/bin/
rm -rf pseint pseint.tgz
# Python
xml="$(curl -sSL "https://pvsc.blob.core.windows.net/python-language-server-stable?restype=container&comp=list&prefix=Python-Language-Server-linux-x64")"
nupkg="$(echo "$xml" | grep -Eo 'https://[^<]+\.nupkg' | tail -n1)"