New language: Rapira
This commit is contained in:
parent
e6d625e1eb
commit
221f09bb2d
|
@ -1276,6 +1276,14 @@ main = do
|
||||||
run: `racket -i -e '(enter! "main.rkt") (display "[ type (enter! \\"main.rkt\\") to access local variables ]\\n")'`,
|
run: `racket -i -e '(enter! "main.rkt") (display "[ type (enter! \\"main.rkt\\") to access local variables ]\\n")'`,
|
||||||
template: `#lang racket/base
|
template: `#lang racket/base
|
||||||
(display "Hello, world!\\n")
|
(display "Hello, world!\\n")
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
рапира: {
|
||||||
|
aliases: ["rap", "rerap", "rerap2", "rapira"],
|
||||||
|
name: "Рапира",
|
||||||
|
main: "main.rap",
|
||||||
|
run: "rapira main.rap",
|
||||||
|
template: `вывод: "Hello, world!"
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
reasonml: {
|
reasonml: {
|
||||||
|
|
|
@ -67,6 +67,9 @@ r-base
|
||||||
# Racket
|
# Racket
|
||||||
racket
|
racket
|
||||||
|
|
||||||
|
# Rapira
|
||||||
|
clang
|
||||||
|
|
||||||
# Redis
|
# Redis
|
||||||
redis
|
redis
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,14 @@ git clone https://github.com/bipinu/malbolge.git
|
||||||
clang malbolge/malbolge.c -o /usr/bin/malbolge
|
clang malbolge/malbolge.c -o /usr/bin/malbolge
|
||||||
rm -rf malbolge
|
rm -rf malbolge
|
||||||
|
|
||||||
|
# Rapira
|
||||||
|
git clone https://github.com/freeduke33/rerap2.git
|
||||||
|
pushd rerap2 >/dev/null
|
||||||
|
make
|
||||||
|
mv rapira /usr/bin/rapira
|
||||||
|
popd >/dev/null
|
||||||
|
rm -rf rerap2
|
||||||
|
|
||||||
# Thue
|
# Thue
|
||||||
wget -nv https://catseye.tc/distfiles/thue-1.5-2015.0827.zip
|
wget -nv https://catseye.tc/distfiles/thue-1.5-2015.0827.zip
|
||||||
unzip thue-*.zip
|
unzip thue-*.zip
|
||||||
|
|
Loading…
Reference in New Issue