From 681db59d4453af8961bf2bde7432899a43c546f9 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Fri, 2 Oct 2020 16:40:59 -0700 Subject: [PATCH] [#24] New language: Neko --- backend/src/langs.ts | 9 +++++++++ scripts/docker-install-phase3c.bash | 3 +++ 2 files changed, 12 insertions(+) diff --git a/backend/src/langs.ts b/backend/src/langs.ts index a180e39..8318400 100644 --- a/backend/src/langs.ts +++ b/backend/src/langs.ts @@ -2244,6 +2244,15 @@ message: timeout: 15, skip: ["lsp"], }, + neko: { + aliases: ["nekoc"], + name: "Neko", + main: "main.neko", + compile: "nekoc main.neko", + run: "neko main", + template: `$print("Hello, world!\\n"); +`, + }, nim: { name: "Nim", main: "main.nim", diff --git a/scripts/docker-install-phase3c.bash b/scripts/docker-install-phase3c.bash index 7876b65..0324a7f 100755 --- a/scripts/docker-install-phase3c.bash +++ b/scripts/docker-install-phase3c.bash @@ -28,6 +28,9 @@ fis-gtm # MySQL mysql-server +# Neko +neko + # Nim nim