From aa4ff4d4cf84a046d1314a3ccc9634f97b7e79c2 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sun, 27 Sep 2020 15:04:31 -0700 Subject: [PATCH] [#24] New language: Asymptote --- backend/src/langs.ts | 9 +++++++++ scripts/docker-install-phase3a.bash | 3 +++ 2 files changed, 12 insertions(+) diff --git a/backend/src/langs.ts b/backend/src/langs.ts index 2e3246a..5b96372 100644 --- a/backend/src/langs.ts +++ b/backend/src/langs.ts @@ -225,6 +225,15 @@ int main() { } } ` + }, + asymptote: { + aliases: ["asy"], + name: "Asymptote", + repl: "asy", + main: "main.asy", + run: "asy main.asy; asy", + template: `write("Hello, world!"); +`, }, ats: { aliases: ["dats"], diff --git a/scripts/docker-install-phase3a.bash b/scripts/docker-install-phase3a.bash index 29e5508..6a173a7 100755 --- a/scripts/docker-install-phase3a.bash +++ b/scripts/docker-install-phase3a.bash @@ -42,6 +42,9 @@ aspectc++ # AspectJ aspectj +# Asymptote +asymptote + # ATS ats2-lang