Add Pascal

This commit is contained in:
SpaceEEC 2019-03-13 05:37:28 +01:00 committed by 1Computer1
parent 6d283cb3df
commit afa2533f51
4 changed files with 35 additions and 0 deletions

View file

@ -62,6 +62,7 @@ One of the following languages is set in `lang`.
- `js` JavaScript (Node 10.14.2) - `js` JavaScript (Node 10.14.2)
- `py` Python (CPython 3.6.8) - `py` Python (CPython 3.6.8)
- `hs` Haskell (GHC 8.4.3) - `hs` Haskell (GHC 8.4.3)
- `pas` Pascal (FPC 3.0.4)
## Options ## Options
@ -76,6 +77,9 @@ For Python:
For Haskell: For Haskell:
- None - None
For Pascal:
- None
## Packages ## Packages
Apart from the standard libraries, some other libraries come pre-installed. Apart from the standard libraries, some other libraries come pre-installed.
@ -100,3 +104,6 @@ For Haskell:
- scientific - scientific
- split - split
- vector - vector
For Pascal:
- None

5
docker/pascal/Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM frolvlad/alpine-fpc
LABEL author="SpaceEEC"
COPY run.sh /var/run/
WORKDIR /var/ws

11
docker/pascal/run.sh Normal file
View file

@ -0,0 +1,11 @@
echo "$1" > program.pas
# fpc does not use stderr, ld however does, capture both
res="$(fpc program.pas 2>&1)"
if [ $? -eq 0 ]; then
./program
else
echo "$res"
exit 1
fi

12
src/languages/pascal.js Normal file
View file

@ -0,0 +1,12 @@
const Language = require('../struct/Language');
class Pascal extends Language {
constructor() {
super('pascal', {
highlight: 'pas',
aliases: ['pascal', 'pas']
});
}
}
module.exports = Pascal;