diff --git a/backend/src/langs.ts b/backend/src/langs.ts index 3b76f32..08bf40f 100644 --- a/backend/src/langs.ts +++ b/backend/src/langs.ts @@ -856,6 +856,16 @@ main() -> main: "main.exu", run: "exu main.exu", template: `puts(1, "Hello, world!\\n") +`, + }, + எழில்: { + aliases: ["ezhil", "ezhili", "ezhuthi", "tamil"], + name: "எழில்", + repl: "ezhili", + main: "main.n", + run: "ezhili main.n; ezhili", + hello: "வணக்கம், உலகமே!", + template: `பதிப்பி "வணக்கம், உலகமே!" `, }, factor: { diff --git a/scripts/docker-install-phase4.bash b/scripts/docker-install-phase4.bash index ef22563..d0444aa 100755 --- a/scripts/docker-install-phase4.bash +++ b/scripts/docker-install-phase4.bash @@ -110,6 +110,14 @@ tar -xf euphor*.tar -C /opt/euphoria --strip-components=1 ln -s /opt/euphoria/bin/exu /usr/bin/ rm euphor*.tar +# Ezhil +wget -nv https://github.com/raxod502/riju-cdn/releases/download/ezhil-2017.08.19/ezhil.tar.gz +tar -xf ezhil.tar.gz +mv ezhil-* /opt/ezhil +cp /opt/ezhil/ezhili /opt/ezhil/ezhuthi/ +ln -s /opt/ezhil/ezhuthi/ezhili /usr/local/bin/ +rm ezhil.tar.gz + # Factor ver="$(curl -sSL https://factorcode.org/ | grep -Eo 'release\?os=linux[^>]+>[^<]+' | sed -E 's/[^>]+>//' | head -n1)" wget -nv "https://downloads.factorcode.org/releases/${ver}/factor-linux-x86-64-${ver}.tar.gz"