New language: ><>

This commit is contained in:
Radon Rosborough 2020-07-17 21:05:06 -06:00
parent 84b45388a1
commit 3ff5954bd1
2 changed files with 14 additions and 0 deletions

View File

@ -31,6 +31,15 @@ export interface LangConfig {
}
export const langs: { [key: string]: LangConfig } = {
"><>": {
aliases: ["esofish"],
name: "><>",
main: "main.fish",
run: "esofish main.fish",
template: `"Hello, world!"r\\
o;!?l<
`,
},
ada: {
aliases: ["adb"],
name: "Ada",

View File

@ -19,6 +19,11 @@ wget -nv https://github.com/jgm/pandoc/releases/download/2.10/pandoc-2.10-linux-
tar -xf pandoc-*-linux-amd64.tar.gz -C /usr --strip-components=1
rm pandoc-*-linux-amd64.tar.gz
# ><>
wget -nv https://gist.githubusercontent.com/anonymous/6392418/raw/3b16018cb47f2f9ad1fa085c155cc5c0dc448b2d/fish.py -O /usr/bin/esofish
sed -i 's:^#!.*:#!/usr/bin/env python3:' /usr/bin/esofish
chmod +x /usr/bin/esofish
# Ada
wget -nv https://dl.bintray.com/reznikmm/ada-language-server/linux-latest.tar.gz
tar -xf linux-latest.tar.gz