diff --git a/usr/share/tio.run/languages.json b/usr/share/tio.run/languages.json index 3b48036..c16cab5 100644 --- a/usr/share/tio.run/languages.json +++ b/usr/share/tio.run/languages.json @@ -1139,6 +1139,28 @@ }, "update": "no-version" }, + "arturo": { + "categories": [ + "practical" + ], + "encoding": "UTF-8", + "link": "https://arturo-lang.io", + "name": "Arturo", + "tests": { + "helloWorld": { + "request": [ + { + "command": "F", + "payload": { + ".code.tio": "print \"Hello, World!\"" + } + } + ], + "response": "Hello, World!" + } + }, + "update": "git" + }, "asciidots": { "categories": [ "recreational" diff --git a/wrappers/arturo b/wrappers/arturo new file mode 100644 index 0000000..c65f537 --- /dev/null +++ b/wrappers/arturo @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +arturo .code.tio "$@" < .input.tio