mirror of
https://github.com/engineer-man/piston.git
synced 2025-06-08 11:16:27 +02:00
added the paradoc golfing language as seen on Advent of Code
This commit is contained in:
parent
a0bb87055f
commit
48a1b124dd
3 changed files with 15 additions and 0 deletions
|
@ -85,6 +85,14 @@ ln -s python python3.8
|
|||
echo 'export PATH=$PATH:/opt/python3/Python-3.8.2' >> /opt/.profile
|
||||
source /opt/.profile
|
||||
|
||||
# install paradoc
|
||||
# this is not a binary, it is a python module
|
||||
# therefore it cannot be run directly as it requires python3 to be installed
|
||||
cd /opt && mkdir paradoc && cd paradoc
|
||||
git clone https://github.com/betaveros/paradoc.git
|
||||
echo 'export PYTHONPATH=$PYTHONPATH:/opt/paradoc/paradoc' >> /opt/.profile
|
||||
source /opt/.profile
|
||||
|
||||
# install node.js
|
||||
# final binary: /opt/nodejs/node-v12.16.1-linux-x64/bin/node
|
||||
# get version: /opt/nodejs/node-v12.16.1-linux-x64/bin/node -v
|
||||
|
@ -357,6 +365,7 @@ If an invalid language is supplied, a typical response will look like the follow
|
|||
- php
|
||||
- python2
|
||||
- python3
|
||||
- paradoc
|
||||
- ruby
|
||||
- rust
|
||||
- swift
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue