From 61890838cda00d28347ed0c55d71c0f60c8ae494 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 11 Dec 2021 12:27:31 -0800 Subject: [PATCH] Carp has become too slow to run --- langs/carp.yaml | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 langs/carp.yaml diff --git a/langs/carp.yaml b/langs/carp.yaml deleted file mode 100644 index 4aca952..0000000 --- a/langs/carp.yaml +++ /dev/null @@ -1,49 +0,0 @@ -id: "carp" -name: "Carp" - -info: - year: 2015 - desc: "Programming language designed to work well for interactive and performance sensitive use cases like games, sound synthesis and visualizations" - ext: carp - web: - source: "https://github.com/carp-lang/Carp" - category: general - mode: interpreted - platform: [] - syntax: lisp - typing: static - paradigm: - - functional - - imperative - usage: [] - -install: - manual: | - install -d "${pkg}/opt/carp" - install -d "${pkg}/usr/local/bin" - - ver="$(curl -sSL "https://api.github.com/repos/carp-lang/Carp/releases" | jq '.[].tag_name' -r | grep Linux | sort -rV | grep -Eo '[0-9.]+' | head -n1)" - wget "https://github.com/carp-lang/Carp/releases/download/v${ver}_Linux/v${ver}.zip" -O carp.zip - unzip carp.zip - mv "v${ver}/bin"/* "${pkg}/usr/local/bin/" - mv "v${ver}/core" "${pkg}/opt/carp/" - -repl: | - CARP_DIR=/opt/carp carp -input: | - (* 123 234) - -main: "main.carp" -template: | - (use IO) - - (println "Hello, world!") - -run: | - CARP_DIR=/opt/carp carp main.carp - -scope: - code: | - (def x (* 123 234)) - -timeoutFactor: 8